    :root {
      --sage: #7ba97c;
      --sage-dark: #6a9269;
      --sage-light: #e8f3e8;
      --sage-pale: #f4f8f4;
      --charcoal: #1d2d3d; /* Deep Navy Blue */
      --charcoal-dark: #121c26; /* Darker Navy */
      --charcoal-light: #2e4052; /* Lighter Navy */
      --gold: #c4a661;
      --black: #000000;
      --gray-900: #1a1a1a;
      --gray-800: #2e2e2e;
      --gray-700: #4a4a4a;
      --gray-600: #606060;
      --gray-500: #808080;
      --gray-400: #a0a040;
      --gray-300: #c0c0c0;
      --gray-200: #e0e0e0;
      --gray-100: #f0f0f0;
      --gray-50: #f8f8f8;
      --white: #ffffff;

      --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
      --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);

      --space-xs: 4px;
      --space-sm: 8px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      --space-4xl: 80px;

      --text-xs: 11px;
      --text-sm: 13px;
      --text-base: 15px;
      --text-lg: 17px;
      --text-xl: 20px;
      --text-2xl: 24px;
      --text-3xl: 30px;
      --text-4xl: 36px;
      --text-5xl: 46px;

      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --font-display: 'Playfair Display', Georgia, serif;

      --radius: 8px;
      --radius-lg: 12px;
      --max-width: 1200px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { 
      font: 400 var(--text-base)/1.65 var(--font-sans); 
      color: var(--gray-900);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font: inherit; cursor: pointer; border: none; background: none; }

    .container { 
      max-width: var(--max-width); 
      margin: 0 auto; 
      padding: 0 var(--space-lg); 
      width: 100%;
    }
	.booking-kit_dropdown-menu_d73409e0.booking-kit_dropdown-menu-is-desktop-up_694aba2d {
    background: red !important;
}

    @media (max-width: 768px) {
      .container {
        padding: 0 var(--space-md);
      }
    }

    h1 { 
      font: 600 var(--text-5xl)/1.2 var(--font-display); 
      color: var(--charcoal); 
      letter-spacing: -0.02em;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: var(--text-4xl);
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: var(--text-3xl);
      }
    }
    h2 { 
      font: 600 var(--text-4xl)/1.3 var(--font-sans); 
      color: var(--charcoal); 
      letter-spacing: -0.01em;
    }
    h3 { 
      font: 600 var(--text-xl)/1.4 var(--font-sans); 
      color: var(--charcoal); 
    }
    p { 
      font-size: var(--text-base); 
      font-weight: 400;
      line-height: 1.7; 
      color: var(--gray-700);
    }

    .booking-kit_dropdown-menu_d73409e0 booking-kit_dropdown-menu-is-desktop-up_694aba2d {
    background: red !important;
}
    /* Marquee with Dark Navy Blue */
    .announcement-bar {
      background: var(--charcoal);
      color: var(--white);
      overflow: hidden;
      position: relative;
      height: 36px;
      display: flex;
      align-items: center;
    }
    .marquee {
      display: flex;
      animation: scroll 40s linear infinite;
      white-space: nowrap;
    }
    .marquee-content {
      display: flex;
      padding-right: 50px;
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 0.5px;
    }
    .marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 var(--space-xl);
    }
    .marquee-icon {
      width: 16px;
      height: 16px;
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200);
      z-index: 1000;
      width: 100%;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .logo {
      display: flex;
      align-items: center;
      height: 100%;
    }
    .logo-image {
      height: 70px;
      width: auto;
      object-fit: contain;
    }
    
    @media (max-width: 768px) {
      .header-inner {
        height: 60px;
      }
      .logo-image {
        height: 40px;
      }
    }

    .nav {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .nav-link {
      padding: 8px 10px;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--gray-800);
      border-radius: 6px;
      transition: color 160ms ease, background 160ms ease, transform 160ms ease;
    }
    .nav-link:hover {
      color: var(--sage-dark);
      background: rgba(122,169,124,0.06);
      transform: translateY(-1px);
    }
    .nav-links { 
      display: flex; 
      gap: 18px; 
      align-items: center; 
    }
    .nav-link.active { color: var(--sage); }
	

    @media (max-width: 768px) {
      .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
      }
      .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      .nav-links {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
      }
      .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-sm);
      }
    }

    .connect-btn {
      margin-left: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 18px;
      background: linear-gradient(180deg,var(--sage-dark),var(--sage));
      color: #fff;
      border-radius: 999px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(6,60,64,0.12);
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .connect-btn {
        margin-left: 0;
        margin-top: var(--space-md);
        width: 100%;
        justify-content: center;
      }

    }
    
    @media (max-width: 768px) {
      .connect-btn {
        margin-left: 0;
        margin-top: var(--space-md);
        width: 100%;
        justify-content: center;
      }
    }
    
    .connect-btn svg { width: 18px; height: 18px; display: block; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      padding: 10px 20px;
      font-size: var(--text-sm);
      font-weight: 600;
      border-radius: var(--radius);
      transition: all 0.2s ease;
      cursor: pointer;
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sage);
      color: var(--white);
      border-color: var(--sage);
    }
    .btn-primary:hover {
      background: var(--sage-dark);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }
    .btn-secondary {
      background: transparent;
      color: var(--sage);
      border-color: var(--sage);
    }
    .btn-secondary:hover {
      background: var(--sage);
      color: var(--white);
    }
    .btn-lg {
      padding: 16px 32px;
      font-size: var(--text-base);
      font-weight: 700;
    }

    .menu-toggle { 
      display: none; 
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
        cursor: pointer;
        padding: var(--space-sm);
        margin-left: auto;
      }
      .menu-toggle svg {
        width: 24px;
        height: 24px;
        fill: var(--charcoal);
      }
    }

    /* Hero with Dark Gradient Background */
    .hero {
      min-height: calc(100vh - 106px);
      background: 
        linear-gradient(135deg, rgba(29, 45, 61, 0.95) 0%, rgba(18, 28, 38, 0.85) 100%),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&h=900&fit=crop&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding-top: 60px;
      padding-bottom: var(--space-4xl);
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(123,169,124,0.05) 0%, transparent 100%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 360px;
      gap: var(--space-4xl);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1024px) {
      .hero {
        min-height: auto;
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
        background-attachment: scroll;
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding-top: var(--space-2xl);
        padding-bottom: var(--space-2xl);
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      padding: 8px var(--space-md);
      background: var(--sage);
      color: var(--white);
      border-radius: 100px;
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: var(--space-lg);
    }

    .hero-title {
      margin-bottom: var(--space-lg);
      font-style: italic;
      color: var(--white);
    }
    .hero-title .highlight {
      color: var(--sage);
      display: block;
      margin-top: var(--space-sm);
    }

    .hero-subtitle {
      font-size: var(--text-lg);
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: var(--space-xl);
      max-width: 600px;
      font-weight: 300;
    }

    .hero-cta {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      margin-bottom: var(--space-xl);
    }

    .hero-stats {
      display: flex;
      gap: var(--space-3xl);
      padding-top: var(--space-lg);
      border-top: 2px solid rgba(255,255,255,0.15);
    }
    .hero-stat-value {
      font-size: var(--text-4xl);
      font-weight: 700;
      color: var(--sage);
      line-height: 1;
      display: block;
      margin-bottom: var(--space-xs);
    }
    .hero-stat-label {
      font-size: var(--text-xs);
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-weight: 500;
    }

    /* Profile Card */
    .profile-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }
    .profile-image {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--gray-100);
      position: relative;
    }
    .profile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }
    .profile-badge {
      position: absolute;
      bottom: var(--space-md);
      left: var(--space-md);
      right: var(--space-md);
      background: rgba(29, 45, 61, 0.95);
      backdrop-filter: blur(8px);
      padding: var(--space-md);
      border-radius: var(--radius);
      color: var(--white);
    }
    .profile-name {
      font-size: var(--text-xl);
      font-weight: 600;
      margin-bottom: var(--space-xs);
    }
    .profile-title {
      font-size: var(--text-sm);
      color: var(--gold);
      font-weight: 500;
    }

    /* Section */
    .section {
      padding: var(--space-3xl) 0;
      border-bottom: 1px solid var(--gray-200);
    }
    .section-header {
      text-align: center;
      max-width: 900px;
      margin: 0 auto var(--space-4xl);
      position: relative;
    }
    .section-header::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--sage);
      border-radius: 2px;
    }
    .section-label {
      display: inline-block;
      padding: 8px var(--space-lg);
      background: var(--sage-light);
      color: var(--sage-dark);
      border-radius: 100px;
      font-size: var(--text-sm);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: var(--space-md);
      box-shadow: 0 4px 12px rgba(123,169,124,0.15);
    }
    .section-title {
      margin: var(--space-lg) 0;
      font-size: var(--text-5xl);
      font-family: var(--font-display);
      color: var(--charcoal);
      line-height: 1.2;
      font-weight: 700;
    }
    .section-subtitle {
      font-size: var(--text-lg);
      color: var(--gray-600);
      line-height: 1.75;
      font-weight: 400;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Badges */
    .badges-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
      align-items: center;
    }
    .badge {
      background: var(--white);
      border: 2px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: var(--space-xl) var(--space-md);
      text-align: center;
      transition: all 0.2s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .badge:hover {
      border-color: var(--sage);
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .badge-logo {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
    }
    .badge-logo img {
      max-height: 60px;
      width: auto;
      object-fit: contain;
    }
    .badge-name {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: var(--space-xs);
    }
    .badge-desc {
      font-size: var(--text-xs);
      color: var(--gray-600);
      font-weight: 400;
    }

    /* NEW Features Section with Images */
    .features-reimagined {
      padding: var(--space-3xl) 0;
    }
    .features-grid-reimagined {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }
    .feature-card {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      color: var(--white);
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-8px);
    }
    .feature-card img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: transform 0.4s ease;
    }
    .feature-card:hover img {
      transform: scale(1.05);
    }
    .feature-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(29, 45, 61, 0.85) 0%, rgba(29, 45, 61, 0.1) 100%);
      z-index: 2;
    }
    .feature-content {
      position: relative;
      z-index: 3;
      padding: var(--space-xl);
    }
    .feature-title {
      font-size: var(--text-2xl);
      font-weight: 700;
      line-height: 1.3;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
	  color:#fff;
    }


    /* Professional Service Icons */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-xl);
      margin-bottom: var(--space-2xl);
    }
    .service {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .service::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--sage) 0%, var(--sage-dark) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .service:hover {
      border-color: var(--sage);
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }
    .service:hover::before {
      opacity: 1;
    }
    .service-icon {
      width: 64px;
      height: 64px;
      background: var(--sage-pale);
      border-radius: var(--radius-lg);
      display: grid;
      place-items: center;
      margin-bottom: var(--space-lg);
      transition: all 0.28s ease;
      border: 2px solid var(--sage-light);
      color: var(--sage-dark);
    }
    .service-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    .service:hover .service-icon {
      transform: scale(1.1) rotate(-5deg);
      background: var(--sage-light);
      border-color: var(--sage);
    }
    .service-icon img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }
    .service:hover .service-icon img {
      transform: scale(1.1);
    }
    .service-title {
      font-size: var(--text-xl);
      font-weight: 700;
      margin-bottom: var(--space-md);
      color: var(--charcoal);
      transition: color 0.3s ease;
    }
    .service:hover .service-title {
      color: var(--sage-dark);
    }
    .service-desc {
      color: var(--gray-600);
      line-height: 1.75;
      font-size: var(--text-base);
      font-weight: 400;
      margin-bottom: var(--space-xl);
      flex-grow: 1;
    }
    .service-link {
      text-align: center;
      padding: var(--space-md) var(--space-lg);
      background: var(--sage-light);
      color: var(--sage-dark);
      border-radius: var(--radius);
      font-weight: 600;
      font-size: var(--text-sm);
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      width: 100%;
    }
    .service:hover .service-link {
      background: var(--sage);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* Blog */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
    }
    .blog-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.2s ease;
    }
    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
      border-color: var(--sage);
    }
    .blog-image {
      width: 100%;
      aspect-ratio: 16/10;
      background: var(--gray-100);
    }
    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .blog-content {
      padding: var(--space-lg);
    }
    .blog-meta {
      display: flex;
      gap: var(--space-sm);
      margin-bottom: var(--space-sm);
      font-size: var(--text-xs);
      color: var(--gray-500);
      font-weight: 500;
    }
    .blog-category {
      color: var(--sage);
      font-weight: 600;
    }
    .blog-title {
      font-size: var(--text-lg);
      font-weight: 600;
      margin-bottom: var(--space-sm);
      color: var(--charcoal);
      line-height: 1.4;
    }
    .blog-excerpt {
      color: var(--gray-600);
      line-height: 1.65;
      margin-bottom: var(--space-md);
      font-size: var(--text-sm);
      font-weight: 400;
    }
    .blog-link {
      color: var(--sage);
      font-weight: 600;
      font-size: var(--text-sm);
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
    }

    /* Professional CTA Section */
    .cta-professional {
      background:
        linear-gradient(135deg, rgba(29, 45, 61, 0.92) 0%, rgba(18, 28, 38, 0.95) 100%),
        url('https://images.unsplash.com/photo-1572095094391-a7c957850faa?w=1600&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: var(--space-4xl) var(--space-lg);
      text-align: center;
      border-top: 4px solid var(--sage);
    }
    .cta-professional-content {
      max-width: 800px;
      margin: 0 auto;
    }
    .cta-professional .icon {
      display: inline-block;
      margin-bottom: var(--space-lg);
      color: var(--sage);
    }
    .cta-professional h2 {
      font-family: var(--font-display);
      color: var(--white);
      font-size: var(--text-4xl);
      margin-bottom: var(--space-md);
      line-height: 1.3;
    }
    .cta-professional p {
      color: rgba(255,255,255,0.8);
      font-size: var(--text-lg);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: var(--space-xl);
    }
    .cta-professional-actions {
      display: flex;
      justify-content: center;
      gap: var(--space-md);
      flex-wrap: wrap;
    }
    .cta-professional .btn-secondary {
      background: transparent;
      border-color: var(--sage);
      color: var(--sage);
    }
    .cta-professional .btn-secondary:hover {
      background: var(--sage);
      color: var(--white);
    }

    /* Gallery */
    .office-gallery {
      background: var(--gray-50);
      padding: var(--space-3xl) 0;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
    .gallery-item {
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
      }
    }
      
    .gallery-item:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-xl);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Form */
    .form-section {
      background: var(--white);
      padding: var(--space-3xl) 0;
    }
    .form-wrapper {
      max-width: 700px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: var(--space-3xl);
      box-shadow: var(--shadow-lg);
    }
    .form-title {
      text-align: center;
      margin-bottom: var(--space-sm);
    }
    .form-subtitle {
      text-align: center;
      color: var(--gray-600);
      margin-bottom: var(--space-xl);
      font-weight: 400;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }
    .form-group {
      margin-bottom: var(--space-md);
    }
    .label {
      display: block;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--gray-800);
      margin-bottom: var(--space-sm);
    }
    .input {
      width: 100%;
      padding: 11px var(--space-md);
      font-size: var(--text-sm);
      color: var(--gray-900);
      background: var(--white);
      border: 2px solid var(--gray-300);
      border-radius: var(--radius);
      transition: all 0.2s ease;
      font-weight: 400;
    }
    .input:focus {
      outline: none;
      border-color: var(--sage);
      box-shadow: 0 0 0 3px var(--sage-light);
    }
    .textarea {
      min-height: 100px;
      resize: vertical;
      font-family: inherit;
    }
    .form-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: var(--space-lg);
      padding-top: var(--space-lg);
      border-top: 1px solid var(--gray-200);
      font-size: var(--text-sm);
      color: var(--gray-600);
      font-weight: 500;
    }
    section#credentials {
    background: linear-gradient(to bottom, var(--sage-pale), white);
}

    /* Footer */
    .footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.75); /* Updated for professional look */
      padding: var(--space-3xl) 0 var(--space-xl);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: var(--space-3xl);
      margin-bottom: var(--space-xl);
    }
    .footer-brand h4 {
      color: var(--white);
      font-size: var(--text-xl);
      font-weight: 600;
      margin-bottom: var(--space-md);
    }
    .footer-brand p {
      color: rgba(255, 255, 255, 0.75);
      font-size: var(--text-sm);
      line-height: 1.65;
      margin-bottom: var(--space-lg);
      font-weight: 400;
    }
    .footer-title {
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--white);
      margin-bottom: var(--space-md);
    }
    .footer-list {
      list-style: none;
    }
    .footer-list li {
      margin-bottom: var(--space-sm);
    }
    .footer-list a {
      color: rgba(255, 255, 255, 0.75);
      font-size: var(--text-sm);
      transition: color 0.2s ease;
      font-weight: 400;
    }
    .footer-list a:hover {
      color: var(--white);
    }
    .social-links {
      display: flex;
      gap: var(--space-sm);
      margin-top: var(--space-md);
    }
    .social {
      width: 38px;
      height: 38px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      transition: all 0.2s ease;
    }
    .social:hover {
      transform: translateY(-2px);
    }
    .social-facebook { background: #1877f2; }
    .social-twitter { background: #1da1f2; }
    .social-linkedin { background: #0a66c2; }
    .social-instagram { background: #e4405f; }
    .social-youtube { background: #ff0000; }

    .footer-bottom {
      text-align: center;
      padding-top: var(--space-lg);
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .disclaimer {
      background: rgba(196,166,97,0.1);
      border: 1px solid var(--gold);
      border-radius: var(--radius);
      padding: var(--space-md);
      margin-bottom: var(--space-lg);
      font-size: var(--text-xs);
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.65;
      font-weight: 400;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .copyright {
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
    }

    /* Appointment Section Styles */
    .duration-btn {
      transition: all 0.3s ease;
    }
    .duration-btn:hover:not(.active) {
      background: var(--sage-light) !important;
      border-color: var(--sage) !important;
      color: var(--sage-dark) !important;
      transform: translateY(-1px);
    }
    .duration-btn.active {
      background: var(--sage) !important;
      color: white !important;
    }
    .time-btn {
      transition: all 0.3s ease;
    }
    .time-btn:hover {
      background: var(--sage) !important;
      color: white !important;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .time-btn.active {
      background: var(--sage) !important;
      color: white !important;
    }
    .progress-steps .step.active span:first-child {
      box-shadow: 0 4px 12px rgba(123,169,124,0.3);
    }
    .time-slot-btn {
      transition: all 0.2s ease;
    }
    .time-slot-btn:hover {
      background: var(--sage-light) !important;
      border-color: var(--sage) !important;
      transform: translateY(-1px);
    }
    .time-slot-btn.selected {
      background: var(--sage) !important;
      border-color: var(--sage) !important;
      color: var(--white) !important;
    }
    .time-slots-list::-webkit-scrollbar {
      width: 6px;
    }
    .time-slots-list::-webkit-scrollbar-track {
      background: var(--gray-100);
      border-radius: 3px;
    }
    .time-slots-list::-webkit-scrollbar-thumb {
      background: var(--sage);
      border-radius: 3px;
    }
    .booking-kit_dropdown-menu_d73409e0 {
    background: #fff;
}

    /* Responsive */
    @media (max-width: 1280px) {
      .services-grid { grid-template-columns: repeat(4, 1fr); }
    }
    
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; }
      .badges-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .features-grid-reimagined { grid-template-columns: 1fr; }
      .feature-card { aspect-ratio: 16/9; }
    }

    @media (max-width: 768px) {
      :root {
        --text-5xl: 36px;
        --text-4xl: 28px;
        --text-3xl: 24px;
      }
      .announcement-bar { height: 32px; }
      .marquee-content { font-size: 11px; }
      .header-inner { height: 60px; }
      .logo-image { height: 40px; }
      .hero, .cta-professional {
        background-attachment: scroll;
        min-height: auto;
        padding-top: var(--space-3xl);
        padding-bottom: var(--space-3xl);
      }
      .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        flex-direction: column;
        padding: var(--space-lg);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
      }
      .nav.active { transform: translateY(0); }
      .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: var(--space-sm);
      }
      .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--charcoal);
        border-radius: 2px;
      }
      .badges-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-cta { flex-direction: column; width: 100%; }
      .hero-cta .btn { width: 100%; }
      .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }
      .feature-card { aspect-ratio: 4/3; }
    }
    
    /* Kranti profile section styles */
    .kranti-section {
      padding: 64px 0;
      background: linear-gradient(180deg, rgba(122,169,124,0.06), rgba(255,255,255,0));
    }
    .kranti-card {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 28px;
      align-items: start;
      background: linear-gradient(180deg, #ffffff, #fbfcfb);
      padding: 28px;
      border-radius: 16px;
      box-shadow: 0 18px 40px rgba(34,50,36,0.12);
      border-left: 6px solid var(--sage);
      max-width: 980px;
      margin: 0 auto;
    }
    .kranti-avatar { width: 160px; height: 160px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
    .kranti-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .kranti-content h3 { font-size: 20px; margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
    .kranti-content p { color: var(--gray-700); margin-bottom: 12px; font-size: 15px; }
    .kranti-cta { margin-top: 12px; }
    .btn-learn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 18px; border-radius: 999px; font-weight: 700;
      background: linear-gradient(90deg, var(--sage) 0%, var(--sage-dark) 100%);
      color: white; box-shadow: 0 18px 40px rgba(106,146,105,0.18);
      transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
      border: none;
    }
    .btn-learn:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(106,146,105,0.22); opacity: 0.98; }
    .kranti-card .lead-badge {
      display: inline-block; background: var(--sage); color: #fff; font-weight: 700; padding: 6px 10px; border-radius: 999px; font-size: 12px; margin-bottom: 8px;
    }
    @media (max-width: 920px) {
      .kranti-card { grid-template-columns: 1fr; padding: 20px; border-left-width: 4px; }
      .kranti-avatar { width: 100%; height: 260px; border-radius: 10px; }
      .kranti-card { max-width: 100%; }
      .kranti-content h3 { font-size: 18px; }
    }
.booking-kit_details-item_42f7390e.booking-kit_styled-location_0af6caf8 {
    position: absolute !important;
    bottom: 0 !important;
}