
/* ===================================
   CTA Section
   =================================== */

.cta-section {
  position: relative;
  color: var(--white);
}

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

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.cta-content > p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-3xl);
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
  line-height: 1.8;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.cta-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(212, 175, 55, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.cta-card:hover::before {
  left: 100%;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.cta-card h4 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: var(--spacing-sm);
  color: var(--gold);
}

.cta-card p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

.cta-card p a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.cta-card p a:hover {
  color: var(--gold);
}

.cta-main-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  border: none;
  border-radius: var(--radius-full);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.5s ease;
}

.cta-main-button:hover::before {
  left: 100%;
}

.cta-main-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-main-button svg {
  width: 20px;
  height: 20px;
  transition: var(--transition-fast);
}

.cta-main-button:hover svg {
  transform: translateX(4px);
}
/* ===================================
   About Section - Textured Premium Dark (Responsive)
   =================================== */

.about-section {
    background-color: #050b18; /* Deep institutional navy */
    padding: 120px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Texture Layer 1: Grainy Noise */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3FfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3F/filter%3E%3Frect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3F/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

/* Texture Layer 2: Subtle Topographic Waves */
.about-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, transparent 40px, rgba(74, 144, 226, 0.02) 41px, rgba(74, 144, 226, 0.02) 42px);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Main Grid Layout */
.about-grid-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Text on left, Cards on right */
    gap: 60px;
    align-items: center;
}

/* Left Side: Content */
.about-text-content h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4A90E2;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Right Side: Bento Grid */
.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Create the staggered "Floating" effect for the bento grid */
.trust-indicators-grid .trust-card:nth-child(even) {
    margin-top: 30px;
}

.trust-card:hover {
    background: rgba(74, 144, 226, 0.06);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-10px);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.trust-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   RESPONSIVE QUERIES
   =================================== */

@media (max-width: 1024px) {
    .about-grid-main {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    .about-grid-main {
        grid-template-columns: 1fr; /* Stack layout on tablets/mobile */
        text-align: center;
    }
    .about-text-content {
        max-width: 700px;
        margin: 0 auto;
    }
    .trust-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .trust-indicators-grid .trust-card:nth-child(even) {
        margin-top: 0; /* Remove stagger on smaller screens for cleaner grid */
    }
}

@media (max-width: 580px) {
    .trust-indicators-grid {
        grid-template-columns: 1fr; /* Single column on phones */
    }
    .about-text-content h3 {
        font-size: 2rem;
    }
    .trust-card {
        padding: 30px 20px;
    }
}
/* ===================================
   Comparison Section - Institutional White
   =================================== */

.comparison-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Texture: Subtle Geometric Grid & Faint blueprint circles */
.comparison-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 0;
}

.comparison-section .container {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.section-title h2 {
    color: #0f172a;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
}

.section-title p {
    color: #64748b;
    font-weight: 500;
}

/* Table Container with Glass Effect */
.table-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    overflow-x: auto; /* For mobile scroll */
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px; /* Ensures data doesn't squash */
}

/* Table Head */
.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table th:first-child {
    text-align: left;
    border-radius: 12px 0 0 12px;
}

.comparison-table th:last-child {
    border-radius: 0 12px 12px 0;
}

/* Specialized Column Highlight */
.comparison-table th:nth-child(2), 
.comparison-table td:nth-child(2) {
    background: rgba(74, 144, 226, 0.03); /* Subtle tint for SIF */
    font-weight: 600;
}

/* Table Body */
.comparison-table td {
    padding: 22px 20px;
    text-align: center;
    color: #475569;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: #0f172a;
}

/* Row Hover Animation */
.comparison-table tr:hover td {
    background-color: #f1f5f9;
    color: #4A90E2;
    transform: scale(1.01);
}

/* Custom "Expert" Button */
.expert-btn-premium {
    background: #0f172a;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.expert-btn-premium:hover {
    background: #4A90E2;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.3);
}

/* Responsive Table scrollbar styling */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
/* ===================================
   Wealth Comparison Section - Dark Institutional
   =================================== */

.wealth-section {
    background-color: #05112b; /* Same Base */
    padding: 120px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

/* Background grid texture for technical feel */
/* Texture Layer: Grainy Noise (Matches About Section) */
.wealth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

/* Texture Layer: Light Blue Glow/Waves (Makes it look "lighter") */
.wealth-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, transparent 40px, rgba(74, 144, 226, 0.02) 41px, rgba(74, 144, 226, 0.02) 42px);
    z-index: 0;
}

.wealth-section .container {
    position: relative;
    z-index: 2;
}

/* --- Section Header --- */
.wealth-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.wealth-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wealth-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- The Z-Pattern Layout --- */
.wealth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text Content Area */
.wealth-insight-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
}

/* Left colored strip for identification */
.insight-card.fd { border-left: 4px solid #ef4444; }
.insight-card.mf { border-left: 4px solid #4A90E2; }
.insight-card.pms { border-left: 4px solid #10b981; }

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.insight-header h3 {
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.roi-badge {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.fd .roi-badge { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.mf .roi-badge { background: rgba(74, 144, 226, 0.1); color: #4A90E2; }
.pms .roi-badge { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.insight-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* --- The CSS Animated Graph (Right Side) --- */
.graph-container {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Graph Bars */
.bar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 25%;
    position: relative;
    z-index: 2;
}

.bar {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: relative;
    bottom: 0;
    /* Initial state for animation */
    height: 0; 
    transition: height 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Bar Colors & Gradients */
.bar.fd-bar { 
    background: linear-gradient(to top, #7f1d1d, #ef4444); 
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}
.bar.mf-bar { 
    background: linear-gradient(to top, #1e3a8a, #4A90E2); 
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}
.bar.pms-bar { 
    background: linear-gradient(to top, #064e3b, #10b981); 
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

/* The Value Label Floating Above Bar */
.bar-value {
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 1.5s; /* Delay until bar rises */
}

.bar-label {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation Trigger Class (Added via JS scroll observer or default) */
 /* 237 Cr Max */

.animate-graph .bar-value {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Lines for the Chart */
.chart-lines {
    position: absolute;
    inset: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .wealth-grid {
        grid-template-columns: 1fr;
    }
    .graph-container {
        height: 400px;
        margin-top: 40px;
    }
}
/* Updated Animation Logic */
.bar {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: relative;
    bottom: 0;
    height: 0; /* Starts at 0, JS will set the specific height */
    transition: height 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Ensure values fade in properly */
.bar-value {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When the graph container becomes visible (triggered by JS adding heights), reveal texts */
.bar-wrapper:hover .bar-value, 
.graph-container .bar-value { 
    /* The JS animation handles text content, 
       but we ensure it's visible once the animation starts */
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* ===================================
   FAQ Section - Premium Light Tech
   =================================== */

.faq-section {
    background-color: #f8fafc; /* Soft tech cloud white */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Texture: Micro-Dot Matrix (Subtle engineering feel) */
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: 0;
}

/* Faint gradient glow in corners for depth */
.faq-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(74, 144, 226, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(74, 144, 226, 0.03) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px; /* Narrower container for better reading focus */
}

/* Header */
.section-title h2 {
    color: #0f172a;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
}

/* FAQ Grid Layout */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

/* FAQ Item - The Card */
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(74, 144, 226, 0.3);
}

.faq-item.active {
    border-color: #4A90E2; /* Highlight active card */
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.1);
}

/* Question Area */
.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #4A90E2;
}

/* Icon Animation */
.faq-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-icon {
    background: #e2e8f0;
}

.faq-item.active .faq-icon {
    background: #4A90E2;
    color: white;
    transform: rotate(45deg); /* Turns plus to X */
}

/* Answer Area - Butter Smooth Animation */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 30px 30px 30px;
    margin: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}
/* ===================================
   Luxury Contact Modal - "The Concierge"
   =================================== */

/* ==================== PREMIUM DARK CONTACT MODAL ==================== */

/* --- Overlay --- */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 13, 0.75); /* Darker backdrop */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Modal Window --- */
.contact-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 500px;
    background: #0B1626; /* Consistent Deep Navy */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    color: #fff;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* --- Header --- */
.window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title-small {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.close-btn-pro {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: 0.2s;
    display: flex; /* Centers SVG */
}

.close-btn-pro:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* --- Content & Typography --- */
.contact-modal-content {
    padding: 30px;
}

.contact-step h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-step p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Service Buttons (Step 1) --- */
.service-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: #4A90E2;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.2s;
}

.service-btn:hover .service-icon {
    background: #4A90E2;
    color: white;
}

.service-info h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.service-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* --- Form Inputs (The Overlap Fix) --- */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

/* Unified Input Style */
.form-group input, 
.form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04); /* Transparent Dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 12px;
    color: #fff; /* White Text */
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
    color-scheme: dark; /* Fixes Date Picker Calendar to be Dark */
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #4A90E2;
    background: rgba(255, 255, 255, 0.06);
}

/* Floating Label Logic */
.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 0.95rem;
    background: transparent; /* Remove White Bg */
    padding: 0 4px;
}

/* Float Up State */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.static-label {
    top: 0 !important;
    transform: translateY(-50%) !important;
    font-size: 0.75rem !important;
    color: #4A90E2 !important;
    background: #0B1626 !important; /* Match Modal BG Color to hide border */
    font-weight: 600;
}

/* --- Dark Checkbox Stack --- */
.checkbox-stack {
    background: rgba(0, 0, 0, 0.2); /* Darker block, not white */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 3px;
    accent-color: #4A90E2;
}

.checkbox-group label {
    position: static !important;
    transform: none !important;
    font-size: 0.8rem;
    color: #94a3b8;
    background: transparent !important;
}

.checkbox-group a {
    color: #4A90E2;
    text-decoration: none;
}

/* --- Buttons --- */
.button-center {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.premium-small-btn {
    background: linear-gradient(135deg, #4A90E2, #2563EB);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
}

.premium-small-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-link {
    width: 100%;
    background: none;
    border: none;
    color: #64748b;
    margin-top: 15px;
    cursor: pointer;
    font-size: 0.9rem;
}
.back-link:hover { color: #94a3b8; }

/* --- Success Animation --- */
.checkmark-circle {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}
.checkmark {
    width: 35px;
    height: 35px;
    color: #10b981;
}

/* --- Step Transition Logic --- */
.contact-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.contact-step.active-step {
    display: block;
}

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