/* =====================================================
   THE HOUSE OF ASTROVASTU - COMPLETE STYLESHEET
   ===================================================== */

/* CSS Variables */
:root {
    /* Colors */
    --background: hsl(40, 33%, 98%);
    --foreground: hsl(234, 35%, 15%);
    --card: hsl(40, 25%, 97%);
    --card-foreground: hsl(234, 35%, 15%);
    --primary: hsl(234, 45%, 20%);
    --primary-foreground: hsl(40, 33%, 98%);
    --secondary: hsl(40, 30%, 94%);
    --secondary-foreground: hsl(234, 35%, 15%);
    --muted: hsl(40, 20%, 92%);
    --muted-foreground: hsl(234, 15%, 45%);
    --border: hsl(40, 20%, 88%);
    --gold: hsl(38, 80%, 50%);
    --gold-light: hsl(40, 70%, 70%);
    --terracotta: hsl(15, 50%, 55%);

    /* Fonts */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container-max: 1280px;
    --section-padding: 6rem;
    --border-radius: 0.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: var(--section-padding) 0;
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-primary {
    background-color: var(--primary);
}

.text-gradient-gold {
    background: linear-gradient(135deg, hsl(38, 80%, 50%) 0%, hsl(45, 90%, 65%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--gold);
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.btn-gold:hover {
    background: #ffe27a;
    transform: translateY(-2px);
}

.btn-outline {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ================= Luxury Loader ================= */
#luxLoader {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .lux-box {
    background: #111;
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    color: gold;
    font-family: Inter, sans-serif;
    box-shadow: 0 0 30px rgba(255,215,0,0.2);
  }
  
  /* Spinner */
  .lux-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,215,0,0.2);
    border-top: 4px solid gold;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
    margin-bottom: 15px;
  }
  
  @keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
  }
  
  /* ================= Apple Style Toast ================= */
  #luxToast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: gold;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
  }
  #luxToast.show {
    opacity: 1;
    transform: translateY(0);
  }
  

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(40, 33%, 98%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
}

.logo-sub {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: -2px;
}

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

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--foreground);
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 5rem;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    padding: 0.75rem 0;
    color: var(--foreground);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* position: sticky; */
    top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(234, 45%, 12%) 0%, hsl(234, 45%, 25%) 50%, hsl(260, 40%, 20%) 100%);
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills screen */
    object-position: center center; /* CENTER */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: hsla(234, 45%, 20%, 0.7);
}

.star-pattern,
.star-pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, hsla(38, 80%, 50%, 0.15) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, hsla(38, 80%, 50%, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(38, 80%, 50%, 0.1);
    border: 1px solid hsla(38, 80%, 50%, 0.3);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsla(40, 33%, 98%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 0rem;
    border-top: 1px solid hsla(40, 33%, 98%, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(40, 33%, 98%, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    background: var(--gold);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--primary-foreground);
}

.section-header.light p {
    opacity: 0.7;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(38, 80%, 50%, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.section-badge span {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
}

.section-badge.light {
    border: 1px solid hsla(38, 80%, 50%, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title.light {
    color: var(--primary-foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.section-subtitle.light {
    color: hsla(40, 33%, 98%, 0.7);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/*============================== About Section */
.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 10;
}

.image-wrapper img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 28rem;
    margin: 0 auto;
}

.image-frame {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid hsla(38, 80%, 50%, 0.3);
    border-radius: 1rem;
    z-index: -1;
}

.image-bg {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 1rem;
    z-index: -2;
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .floating-card {
        right: 0;
    }
}

.floating-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(38, 80%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.floating-text strong {
    display: block;
    font-family: var(--font-serif);
    color: var(--foreground);
}

.floating-text span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about-content .section-badge,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--foreground);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-card {
    background: var(--secondary);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: box-shadow 0.3s;
}

.highlight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-card svg {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.highlight-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/*=========== about new  */

/* About Slider Fix */
.about-slider {
    position: relative;
    overflow: hidden;
}

/* Keep height stable */
.about-slide {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.about-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Dots */
.about-dots {
    text-align: center;
    margin-top: 2rem;
}

.about-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.about-slider:hover {
    cursor: grab;
}
.about-slider:active {
    cursor: grabbing;
}

/* Feature Cards */
.about-features-grid {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .about-feature-card {
    background: rgba(247,244,238,0.75);
    backdrop-filter: blur(10px);
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: 0.3s ease;
  }
  
  .about-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(245,158,11,0.25);
  }
  
  .feature-icon svg {
    color: #f59e0b;
  }
  
  .about-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
  }
  
  .about-feature-card p {
    font-size: 16px;
    color: #6b7280;
  }


/* Services Section */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: hsla(38, 80%, 50%, 0.3);
    transform: translateY(-4px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: hsla(38, 80%, 50%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: hsla(38, 80%, 50%, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.service-features .dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--gold);
    border-radius: 50%;
}

.service-link {
    color: var(--gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: text-decoration 0.2s;
}

.service-card:hover .service-link {
    text-decoration: underline;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-us-content .section-badge,
.why-us-content .section-title {
    text-align: left;
}

.why-us-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.feature-item span {
    color: var(--foreground);
}

.reasons-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reason-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: hsla(38, 80%, 50%, 0.3);
}

.reason-card.offset {
    margin-top: 0;
}

@media (min-width: 640px) {
    .reason-card.offset {
        margin-top: 2rem;
    }
}

.reason-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    position: relative;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: hsla(40, 25%, 97%, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid hsla(40, 33%, 98%, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background 0.3s;
}

.testimonial-card:hover {
    background: hsla(40, 25%, 97%, 0.2);
}

.quote-icon {
    color: hsla(38, 80%, 50%, 0.5);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: hsla(40, 33%, 98%, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: hsla(38, 80%, 50%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    color: var(--primary-foreground);
}

.author-info span {
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.6);
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-wrapper {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 8px;
    background: #111;
  }
  
  .phone-input span {
    font-size: 20px;
    margin-right: 8px;
  }
  
  .phone-input input {
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
  }
  
  #countryCode {
    width: 60px;
    color: gold;
    font-weight: bold;
  }
  

  /* FIX AUTO COUNTRY PHONE UI DESIGN */

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff !important;
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  
  .phone-input span.countryFlag {
    font-size: 20px;
  }
  
  .phone-input input.countryCode {
    width: 70px;
    border: none;
    font-weight: 600;
    background: transparent;
    color: #b8860b;
    text-align: center;
  }
  
  .phone-input input[name="phone"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 6px;
    background: transparent;
  }
  
  /* Remove Safari ugly autofill */
  .phone-input input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
  }
  

  /* ===== Luxury Phone Input (No Flags) ===== */

.ios-phone {
    display: flex;
    align-items: center;
    background: #fff !important;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 6px;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    transition: 0.2s ease;
  }
  
  /* Country Code Box */
  .ios-phone .countryCode {
    width: 70px;
    border: none !important;
    background: #f8f8f8 !important;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #cfa335; /* luxury gold */
    font-size: 14px;
  }
  
  /* Phone Input */
  .ios-phone input[name="phone"] {
    flex: 1;
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    padding: 10px;
    outline: none;
  }
  
  /* Focus Glow */
  .ios-phone:focus-within {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
  }
  
  /* Safari Autofill Fix */
  input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px white inset !important;
  }
  
  /* Force clean white theme */
  input, select, textarea {
    background-color: #fff !important;
    color: #333 !important;
  }
  

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    color: var(--foreground);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px hsla(38, 80%, 50%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    resize: vertical;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: hsla(38, 80%, 50%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: background 0.2s;
}

.contact-item:hover .contact-icon {
    background: hsla(38, 80%, 50%, 0.2);
}

.contact-item div strong {
    display: block;
    color: var(--foreground);
    font-weight: 500;
}

.contact-item div span {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.contact-item:hover div span {
    color: var(--gold);
}

.online-consultation-card {
    background: var(--primary);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.online-consultation-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
}

.online-consultation-card p {
    color: hsla(40, 33%, 98%, 0.8);
    margin-bottom: 1rem;
}


/* ===========contact new */
/* Consultation Layout */

.consultation-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.consultation-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.consultation-forms {
    display: grid;
    gap: 2rem;
}

/* Desktop: Side by side */
@media (min-width: 1024px) {
    .consultation-forms {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact info full width */
.contact-info-wrapper {
    width: 1100px;
    margin: 0 auto;
}

/* Contact Info Layout */
.contact-info-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
  }
  
  /* Center Heading */
  .contact-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  /* Two Column Grid */
  .contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 400px;
  }
  
  /* Contact Column */
  .contact-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Individual Items */
  .contact-item strong {
    font-size: 18px;
    color: gold;
  }
  
  .contact-item p {
    font-size: 16px;
    margin-top: 5px;
    color: #fff;
  }
  
  /* Responsive Mobile */
  @media (max-width: 768px) {
    .contact-info-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  


/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-main,
.footer-brand .logo-sub {
    color: var(--primary-foreground);
}

.footer-brand .logo-sub {
    color: var(--gold);
}

.footer-brand > p {
    color: hsla(40, 33%, 98%, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(40, 33%, 98%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary);
}

/* ================= FAQ SECTION ================= */

.faq-section {
    background: linear-gradient(180deg, #141b3d, #0f1530);
    padding: 80px 0;
    border-top: 1px solid rgba(255,215,0,0.15);
}

.faq-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Card */
.faq-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(8px);
    height: 100%;
}

.faq-item:hover {
    border-color: gold;
    box-shadow: 0 0 18px rgba(255,215,0,0.2);
}

/* Question */
.faq-item summary {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    cursor: pointer;
}

/* Remove default arrow */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow */
.faq-item summary::after {
    content: "+";
    float: right;
    font-size: 20px;
    color: gold;
    transition: 0.3s;
}

.faq-item[open] summary::after {
    content: "−";
}

/* Answer */
.faq-item p {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}


.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-links a {
    color: hsla(40, 33%, 98%, 0.7);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-newsletter p {
    color: hsla(40, 33%, 98%, 0.7);
    margin-bottom: 1rem;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: hsla(40, 33%, 98%, 0.1);
    border: 1px solid hsla(40, 33%, 98%, 0.2);
    border-radius: var(--border-radius);
    color: var(--primary-foreground);
}

.footer-newsletter input::placeholder {
    color: hsla(40, 33%, 98%, 0.5);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-bottom {

    border-top: 1px solid hsla(40, 33%, 98%, 0.1);
    padding: 6px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: hsla(40, 33%, 98%, 0.6);
}
    .footer-disclaimer {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
        text-align: center;
        margin-top: 0; 
        padding: 0px 0;
        font-size: 11px;
    }
    .footer-disclaimer p {
        margin: 0; /* REMOVE DEFAULT PARAGRAPH MARGIN */
        line-height: 1.4;
        font-size: 16px;
    }
    
    .footer-disclaimer strong {
        color: rgba(255,255,255,0.7);
        font-weight: 600;
    }
    

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
