  /* ========================================
           CSS VARIABLES & RESET
           ======================================== */
  :root {
    --primary: #0D6E6E;
    --primary-light: #14919B;
    --primary-dark: #0A5555;
    --secondary: #F5E6D3;
    --accent: #E8505B;
    --accent-alt: #F9A826;
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease-in-out;
    --border-radius: 12px;
    --border-radius-sm: 8px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ========================================
           FADE IN ANIMATION
           ======================================== */
  .fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========================================
           NAVIGATION
           ======================================== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
  }

  .navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 0;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
  }

  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
  }

  .navbar.scrolled .logo-text {
    color: var(--primary-dark);
  }

  .logo-text span {
    display: block;
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
  }

  .navbar.scrolled .nav-link {
    color: var(--text-primary);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--accent);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    transition: var(--transition);
  }

  .dropdown-menu a:hover {
    background: var(--secondary);
    color: var(--primary);
  }

  .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }

  .mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
  }

  .navbar.scrolled .mobile-toggle span {
    background: var(--primary-dark);
  }

  /* ========================================
           MOBILE MENU
           ======================================== */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
  }

  .mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  .mobile-menu a:hover {
    color: var(--primary);
    padding-left: 10px;
  }

  .mobile-dropdown {
    position: relative;
  }

  .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
  }

  .mobile-dropdown-menu.active {
    display: block;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ========================================
           HERO SECTION
           ======================================== */
  .hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 110, 110, 0.95), rgba(10, 85, 85, 0.85)),
      url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding-top: 80px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out;
  }

  .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .breadcrumb a {
    opacity: 0.8;
    transition: var(--transition);
  }

  .breadcrumb a:hover {
    opacity: 1;
    color: var(--accent);
  }

  .breadcrumb span {
    opacity: 0.6;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ========================================
           SECTION STYLES
           ======================================== */
  section {
    padding: 100px 0;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .section-header h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    border-radius: 2px;
  }

  .section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }

  /* ========================================
           CONTACT SECTION
           ======================================== */
  .contact-section {
    background: var(--light-bg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }

  .contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  .contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
  }

  .contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
  }

  .contact-details h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
  }

  .contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
  }

  .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
  }

  .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }

  .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-bg);
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--white);
    width: 100%;
  }

  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 110, 110, 0.3);
  }

  /* ========================================
           MAP SECTION
           ======================================== */
  .map-section {
    padding: 0;
  }

  .map-container {
    height: 500px;
    width: 100%;
    position: relative;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.1);
  }

  /* ========================================
           FAQ SECTION
           ======================================== */
  .faq-section {
    background: var(--light-bg);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }

  .faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-item h4::before {
    content: '?';
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }

  /* ========================================
           FOOTER STYLES
           ======================================== */
  .footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 80px 0 30px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .footer .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .footer .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer .logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
  }

  .footer .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
  }

  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
  }

  .footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    transition: var(--transition);
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
  }

  .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .footer-contact svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
  }

  .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }

  /* ========================================
           BACK TO TOP
           ======================================== */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
  }

  /* ========================================
           RESPONSIVE STYLES
           ======================================== */
  @media (max-width: 1024px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }

    .faq-grid {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    section {
      padding: 60px 0;
    }

    .nav-links {
      display: none;
    }

    .mobile-toggle {
      display: flex;
    }

    .hero {
      height: 40vh;
      min-height: 300px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .contact-info,
    .contact-form {
      padding: 30px;
    }

    .map-container {
      height: 350px;
    }

    /* Footer Responsive */
    .footer {
      padding: 50px 0 25px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .footer-about {
      text-align: center;
    }

    .footer .logo {
      justify-content: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
      text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-links a {
      text-align: center;
    }

    .footer-contact p {
      justify-content: center;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .section-header h2 {
      font-size: 1.7rem;
    }

    .contact-item {
      flex-direction: column;
      text-align: center;
    }

    .contact-icon {
      margin: 0 auto;
    }
  }