/* Base Styles */
:root {
  /* Color Palette */
  --primary-dark: #0d2e4c;
  --primary: #194974;
  --primary-light: #2e6ca4;
  --secondary-dark: #646464;
  --secondary: #8a8a8a;
  --secondary-light: #a8a8a8;
  --accent: #c9b17e;
  --accent-light: #dbc89c;
  --accent-dark: #a79057;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #ffffff;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-light);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--body-font);
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

.text-center {
  text-align: center;
}

/* Header */
.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: background var(--transition-medium);
  position: relative;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 160px;
  padding: 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: -15px;
}

.logo-img {
  height: 150px;
  width: auto;
  max-width: 550px;
  object-fit: contain;
  padding: 10px 0;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-dark);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.logo:hover h1 {
  color: var(--primary);
}

/* Navigation */
.main-nav {
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
  margin-left: var(--space-lg);
}

.nav-link {
  display: block;
  padding: var(--space-sm) 0;
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--secondary-dark);
  transition: color var(--transition-fast);
}

.nav-link:hover, 
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 200px;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-medium);
  z-index: 100;
  padding: var(--space-sm) 0;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--secondary-dark);
  transition: all var(--transition-fast);
}

.dropdown a:hover,
.dropdown a.active {
  background-color: rgba(25, 73, 116, 0.05);
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  margin-top: 0;
  padding-top: var(--space-xl);
  height: 85vh;
  min-height: 600px;
  background: linear-gradient(rgba(13, 46, 76, 0.75), rgba(13, 46, 76, 0.75)), 
              url('https://images.pexels.com/photos/6476808/pexels-photo-6476808.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: var(--space-xxl) 0;
}

.hero-content {
  max-width: 800px;
  padding: 0 var(--space-lg);
}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.hero-content p {
  font-size: 1.75rem;
  margin-bottom: var(--space-xl);
  color: var(--light);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 500;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Section Styles */
section {
  padding: var(--space-xxl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: var(--space-sm);
}

.underline {
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 0 auto;
}

/* Page Banner */
.page-banner {
  margin-top: 0;
  padding-top: var(--space-xl);
  height: 300px;
  background: linear-gradient(rgba(13, 46, 76, 0.85), rgba(13, 46, 76, 0.85)), 
              url('https://images.pexels.com/photos/5483071/pexels-photo-5483071.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.banner-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.banner-content p {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 0;
}

/* About Us Preview */
.about-preview {
  background-color: var(--light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Services Section */
.service-category {
  margin-bottom: var(--space-xl);
}

.service-category h3 {
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

.service-category h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(25, 73, 116, 0.1);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.service-card h4 {
  margin-bottom: var(--space-sm);
}

.services-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Call to Action */
.cta {
  background: linear-gradient(rgba(13, 46, 76, 0.9), rgba(13, 46, 76, 0.9)), 
              url('https://images.pexels.com/photos/8370752/pexels-photo-8370752.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: var(--light);
  padding-top: var(--space-xxl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--secondary-light);
}

.footer h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.footer ul {
  margin-bottom: var(--space-md);
}

.footer ul li {
  margin-bottom: var(--space-sm);
}

.footer ul li a {
  color: var(--secondary-light);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--accent);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-sm);
  color: var(--secondary-light);
}

.footer-contact p i {
  color: var(--accent);
  margin-right: var(--space-sm);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: var(--space-md);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-icons a i {
  color: var(--white);
}

.social-icons a:hover {
  background-color: var(--accent);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Company Description */
.company-description {
  background-color: var(--white);
}

.description-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.description-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.description-text {
  flex: 1;
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--light);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.reason {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.reason:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.reason-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
}

.reason-content h3 {
  margin-bottom: var(--space-sm);
}

/* Meet the Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.founder-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.founder-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.founder-card:hover .founder-image img {
  transform: scale(1.05);
}

.founder-info {
  padding: var(--space-lg);
}

.founder-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xxl);
}

.contact-intro {
  margin-bottom: var(--space-lg);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.info-card {
  background-color: var(--light);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: var(--space-md);
}

.info-icon i {
  font-size: 1.25rem;
}

.info-details h3 {
  margin-bottom: var(--space-sm);
}

.info-details p {
  margin-bottom: var(--space-xs);
  color: var(--secondary-dark);
}

/* Contact Form */
.contact-form-container {
  background-color: var(--light);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--secondary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) 0;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: var(--space-md);
}

/* Map Section */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 46, 76, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: var(--space-lg);
}

/* Service Detail */
.service-detail {
  background-color: var(--white);
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.service-image-full {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.service-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-offerings {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.offering-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.offering-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.offering-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
}

.offering-icon i {
  font-size: 1.5rem;
}

.offering-content {
  flex: 1;
}

.offering-features {
  margin-top: var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
}

.offering-features li {
  position: relative;
  padding-left: var(--space-lg);
}

.offering-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.service-cta {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--light);
  border-radius: var(--radius-md);
  margin-top: var(--space-xl);
}

.service-cta h3 {
  margin-bottom: var(--space-sm);
}

.service-cta p {
  margin-bottom: var(--space-lg);
}

/* Testimonials */
.testimonials {
  background-color: var(--light);
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.testimonial-slide {
  flex: 1;
  min-width: 300px;
}

.testimonial-content {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  color: rgba(25, 73, 116, 0.1);
  font-size: 2rem;
}

.testimonial-text {
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
}

.testimonial-author h4 {
  margin-bottom: var(--space-xs);
}

.testimonial-author p {
  color: var(--secondary);
  margin-bottom: 0;
}

/* Services Overview */
.services-overview {
  background-color: var(--light);
}

.overview-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.category-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-medium);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background-color: rgba(25, 73, 116, 0.1);
  color: var(--primary);
  border-radius: 50%;
  transition: all var(--transition-medium);
}

.category-card:hover .category-icon {
  background-color: var(--primary);
  color: var(--white);
}

.category-icon i {
  font-size: 2rem;
}

.category-card h3 {
  margin-bottom: var(--space-sm);
}

.category-card p {
  margin-bottom: var(--space-lg);
  color: var(--secondary-dark);
}

/* Service Details */
.service-details {
  padding: var(--space-xxl) 0;
}

.service-details.alt-bg {
  background-color: var(--light);
}

.service-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.service-content.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  margin: var(--space-lg) 0;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  margin-right: var(--space-md);
  font-weight: 700;
}

.item-content h4 {
  margin-bottom: var(--space-xs);
}

.cta-button {
  margin-top: var(--space-lg);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-content h2 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
  
  .about-content,
  .description-content,
  .service-content {
    flex-direction: column;
  }
  
  .service-content.reverse {
    flex-direction: column;
  }
  
  .about-image,
  .description-image,
  .service-image {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .header-content {
    height: 70px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: height var(--transition-medium);
    z-index: 1000;
    box-shadow: var(--shadow-md);
  }
  
  .nav-list.active {
    height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-item {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-link {
    padding: var(--space-md) var(--space-lg);
  }
  
  .dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    height: 0;
    overflow: hidden;
    transition: height var(--transition-medium);
    padding: 0;
  }
  
  .has-dropdown.active .dropdown {
    height: auto;
    padding: var(--space-sm) 0;
  }
  
  .dropdown a {
    padding-left: var(--space-xl);
  }
  
  .hero-content h2 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.35rem;
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .founders-grid,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
  }
  
  .services-grid,
  .reasons-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .offering-item {
    flex-direction: column;
  }
  
  .offering-icon {
    margin-bottom: var(--space-md);
  }
}