 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: #FFFDF9;
      color: #1E1E1E;
      scroll-behavior: smooth;
      line-height: 1.5;
    }
    :root {
      --gold: #E6A817;
      --gold-dark: #C48A0C;
      --gold-light: #FFF0CC;
      --black: #111111;
      --white: #FFFFFF;
      --off-white: #FEF9EF;
      --gray: #F5F2ED;
      --shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
      --soft-green: #3a5a40;
      --soft-bg: #fdfbf7;
      --service-accent: #f4efe2;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes gentlePulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.03); }
      100% { transform: scale(1); }
    }
    .animated-section {
      animation: fadeInUp 0.9s ease-out forwards;
    }
    .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hover-lift:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.08);
    }
    .container { 
      max-width: 1300px; 
      margin: 0 auto; 
      padding: 0 2rem; 
    }
    /* Header & Logo */
    .site-header {
      background: var(--white);
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      border-bottom: 3px solid var(--gold);
      position: sticky;
      top: 0;
      z-index: 99;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 0.9rem 2rem;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-image {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-pic{
      height: 50px;
      width: auto;
      border-radius: 50%;
      object-fit: contain;
      background: #f0ebe0;
      padding: 4px;
      transition: transform 0.3s;
    }
    .logo-pic:hover { transform: rotate(3deg) scale(1.05); }

    .logo-picture {
      height: 55px;
      width: auto;
      border-radius: 50%;
      object-fit: contain;
      background: #f0ebe0;
      padding: 4px;
      transition: transform 0.3s;
    }
    .logo-picture:hover { transform: rotate(3deg) scale(1.05); }
    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.2;
    }
    .brand-tagline {
      font-size: 0.7rem;
      letter-spacing: 1px;
      color: #444;
      font-weight: 500;
      display: block;
    }
    .contact-top a {
      color: #3a5a40;
      text-decoration: none;
      font-weight: 500;
      background: #f4f1ea;
      padding: 0.5rem 1.2rem;
      border-radius: 30px;
      transition: background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .nav-links {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 8px;
      width: 100%;
      justify-content: center;
      background: #fafaf8;
      padding: 0.6rem;
      border-radius: 40px;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: var(--black);
      transition: 0.2s;
      border-bottom: 2px solid transparent;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-dark); background: #dde4d5; }

    /* Hero */
    .hero { background: linear-gradient(135deg, #FFF6E5 0%, #FFFFFF 100%); padding: 3rem 0 2.5rem; }
    .hero-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
    .hero-text { flex: 1.2; }
    .hero-badge { background: var(--gold-light); display: inline-block; padding: 0.3rem 1.2rem; border-radius: 40px; font-size: 0.8rem; font-weight: 700; color: #7A4A0A; margin-bottom: 1rem; }
    .hero-text h1 { font-size: 3rem; font-family: 'Playfair Display', serif; font-weight: 800; line-height: 1.2; }
    .hero-text h1 span { color: var(--gold); }
    .hero-text p { margin: 1.2rem 0; font-size: 1.05rem; }
    .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: var(--gold); color: var(--black); padding: 0.8rem 1.8rem; border-radius: 40px; font-weight: 700; border: none; cursor: pointer; }
    .btn-outline { background: transparent; border: 2px solid var(--gold); padding: 0.8rem 1.8rem; border-radius: 40px; font-weight: 600; cursor: pointer; }

    .section-title { text-align: center; font-size: 2.3rem; font-family: 'Playfair Display', serif; margin: 3rem 0 1.5rem; }
    .section-title:after { content: ''; display: block; width: 80px; height: 3px; background: var(--gold); margin: 0.7rem auto 0; border-radius: 4px; }

    /* Services section */
    .services-hero {
      background: #FFF9ED;
      border-radius: 40px;
      padding: 2.5rem 2rem;
      margin: 2rem 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
      border: 1px solid #FFE9B0;
    }
    .services-image {
      flex: 1 1 280px;
      text-align: center;
    }
    .services-image img {
      max-width: 100%;
      border-radius: 28px;
      box-shadow: 0 18px 28px rgba(0,0,0,0.1);
    }
    .services-content {
      flex: 1 1 350px;
    }
    .services-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }
    .service-highlight {
      background: white;
      border-radius: 24px;
      padding: 1.5rem;
      margin-top: 1.2rem;
      box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    }
    .service-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin: 1.2rem 0;
    }
    .service-item {
      background: #FFF8E7;
      padding: 0.7rem 1.5rem;
      border-radius: 40px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .location-badge {
      background: var(--black);
      color: var(--gold);
      display: inline-block;
      padding: 0.5rem 1.8rem;
      border-radius: 30px;
      font-weight: 700;
      margin: 1rem 0;
    }

    /* Other Services Cards */
    .other-services-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 2rem 0;
      justify-content: center;
    }
    .service-card {
      background: white;
      border-radius: 28px;
      padding: 2rem 1.5rem;
      flex: 1 1 280px;
      max-width: 350px;
      box-shadow: 0 12px 28px rgba(0,0,0,0.04);
      transition: all 0.3s;
      border: 1px solid #FFF0D0;
      text-align: center;
    }
    .service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
    .service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
    .service-card h3 { margin: 0.8rem 0; font-family: 'Playfair Display', serif; }

    /* About section */
    .about-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin: 2rem 0;
      align-items: center;
    }
    .about-text {
      flex: 1 1 400px;
    }
    .about-image {
      flex: 1 1 300px;
      background: #FDF3E0;
      border-radius: 32px;
      padding: 2rem;
      text-align: center;
    }
    .about-stats {
      display: flex;
      gap: 1.5rem;
      margin: 1.8rem 0;
      flex-wrap: wrap;
    }
    .stat-item {
      background: var(--gold-light);
      padding: 1rem 1.5rem;
      border-radius: 20px;
      text-align: center;
    }

    /* Carousel */
    .carousel-section { padding: 2rem 1.5rem; background: #ffffff; border-radius: 32px; margin: 2rem 0; }
    .carousel-container { display: flex; overflow-x: auto; gap: 1.8rem; padding: 1rem 0.5rem; scroll-behavior: smooth; }
    .carousel-card { flex: 0 0 auto; width: 260px; background: #f9f7f2; border-radius: 28px; padding: 1.2rem; text-align: center; }

    .edu-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin: 2rem 0; }
    .edu-card { background: white; border-radius: 28px; width: 300px; box-shadow: var(--shadow); transition: 0.25s; border: 1px solid #FFF0D0; cursor: pointer; }
    .card-header { background: var(--black); padding: 1.2rem; text-align: center; color: var(--gold); }
    .card-body { padding: 1.2rem; }

    .highlight-black { background: var(--black); color: #F5E6D3; padding: 3rem 0; margin: 2rem 0; }
    .two-columns { display: flex; gap: 2rem; flex-wrap: wrap; }
    .col { flex: 1; background: rgba(255,255,255,0.05); padding: 1.5rem; border-radius: 28px; border-left: 5px solid var(--gold); }

    .contact-info { background: var(--gold-light); padding: 1.5rem; border-radius: 28px; text-align: center; margin: 2rem auto; }

    /* WhatsApp floating button (bottom left) */
    .whatsapp-float-left {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 1001;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      transition: 0.3s;
    }
    .whatsapp-float-left:hover { transform: scale(1.08); background: #1ebe57; }

    /* Booking tab (right side) */
    .booking-tab {
      position: fixed;
      bottom: 100px;
      right: 24px;
      z-index: 1000;
      background: var(--gold-dark);
      color: white;
      padding: 0.8rem 1.5rem;
      border-radius: 40px 40px 0 40px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 10px 18px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      gap: 8px;
      border: none;
    }

    /* Chat container (right bottom) */
    .chat-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; }
    .chat-toggle { background: var(--gold); width: 60px; height: 60px; border-radius: 60px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; font-size: 1.8rem; color: black; }
    .chat-window { width: 340px; background: white; border-radius: 28px; margin-bottom: 15px; display: none; flex-direction: column; border: 1px solid #F5DEB3; }
    .chat-header { background: var(--black); color: var(--gold); padding: 12px 18px; display: flex; justify-content: space-between; }
    .chat-messages { max-height: 250px; overflow-y: auto; padding: 12px; background: #FEFAF2; }
    .bot-msg { background: #FFF0DB; padding: 8px 12px; border-radius: 14px; font-size: 0.8rem; margin: 4px 0; }
    .chat-input-area { display: flex; padding: 10px; gap: 8px; }
    .chat-input-area input { flex: 1; border-radius: 40px; padding: 8px; }
    .quick-btns { padding: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
    .quick-btn { background: white; border: 1px solid var(--gold); border-radius: 40px; padding: 4px 10px; cursor: pointer; }

    footer { background: #111; color: #bbb; text-align: center; padding: 2rem; margin-top: 3rem; border-top: 4px solid var(--gold); }

    @media (max-width: 750px) {
      .site-header { flex-direction: column; }
      .hero-text h1 { font-size: 2rem; }
    }
    
    /* ============================================
   COMPLETE RESPONSIVE DESIGN
   ============================================ */
/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .section__header {
        font-size: 2.25rem;
    }

    .header__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .about__grid,
    .stats__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__stats {
        justify-content: center;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .section__container {
        padding: 4rem 1.25rem;
    }

    .section__header {
        font-size: 2rem;
    }

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .nav__menu__btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .page-hero h1,
    .hero h1 {
        font-size: 2rem;
    }

    .packages__grid,
    .blog__grid {
        grid-template-columns: 1fr;
    }

    .two-columns,
    .two-col,
    .stats__container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Mobile Large (480px and below) */
@media (max-width: 480px) {
    .section__container {
        padding: 3rem 1rem;
    }

    .section__header {
        font-size: 1.75rem;
    }

    .page-hero,
    .hero {
        padding: 2rem 1rem;
    }

    .stats__grid {
        grid-template-columns: 1fr;
    }

    .btn,
    .btn-primary,
    .btn-outline {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        white-space: normal;
    }

    .stats__card h4 {
        font-size: 2rem;
    }

    .carousel-card,
    .tip-card {
        flex: 0 0 240px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
    .section__header {
        font-size: 1.5rem;
    }

    .page-hero h1,
    .hero h1 {
        font-size: 1.75rem;
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .logo-picture {
        height: 45px;
    }
}

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    :root {
        --max-width: 1300px;
    }

    .section__container {
        padding: 6rem 2rem;
    }

    .section__header {
        font-size: 3rem;
    }

    .page-hero h1,
    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Fix for background attachment on mobile (performance) */
@media (max-width: 768px) {

    header,
    .subscribe {
        background-attachment: scroll;
    }
}

/* Ensure smooth transitions for all interactive elements */
a,
button,
.btn,
.service-card,
.edu-card,
.info-card {
    -webkit-tap-highlight-color: transparent;
}

/* Improve readability on mobile */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .para {
        font-size: 0.95rem;
    }
}

/* Hover effects for touch devices */
@media (hover: hover) {

    .service-card:hover,
    .edu-card:hover,
    .info-card:hover {
        transform: translateY(-6px);
    }
}

@media (hover: none) {

    .service-card:active,
    .edu-card:active {
        transform: scale(0.98);
    }
}
