/* Root Variables for Vibrant Style */
:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --text-dark: #2b2d42;
  --text-light: #8d99ae;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --transition: all 0.3s ease;
  --font-main: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Header & Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 600;
  color: var(--text-dark);
}

.nav-links li a:hover, .nav-links li a.active {
  color: var(--secondary-color);
}

.contact-info-top {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}
.contact-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(43,45,66,0.9), rgba(43,45,66,0.7)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&q=80') center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero .cta-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(78,205,196,0.4);
}

.btn-secondary:hover {
  background-color: #3bbfb6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78,205,196,0.6);
}

/* Sections */
.section-container {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Cards / Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--secondary-color);
}

.card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  background-color: #ddd;
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* Page Content (Internal Pages) */
.page-header {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 20px 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.content-block {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.content-block h2 {
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-block p {
  margin-bottom: 15px;
}

.contact-list {
  font-size: 1.1rem;
}
.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .contact-info-top {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
