* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --green-600: #16a34a;
    --green-700: #15803d;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s;
    border-bottom: 1px solid #f3f4f6;
}

.header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 16px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #166534, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo-text {
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-500);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero-section {
    padding-top: 90px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #fef3f2 0%, #ffffff 50%, #fef3f2 100%);
    min-height: 100vh;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

/* Left Column - Slider & Stats */
.hero-left-column {
    order: 2; /* Default: comes after content on mobile */
}

.urgency-banner {
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: ping 1s infinite;
}

@keyframes ping {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Slider Container */
.slider-container {
    margin-bottom: 0;
    background: #f5f5f5;
    padding: 24px 16px 0;
    margin: 0 -16px;
}

/* Trust Badges ABOVE Slider */
.slider-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge-item {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.badge-rating {
    color: #1f2937;
}

.badge-rating svg {
    color: #f97316;
}

.badge-rera {
    color: #15803d;
}

.badge-rera svg {
    color: #15803d;
}

/* Hero Slider */
.hero-slider-wrapper {
    position: relative;
}

.hero-slider {
    position: relative;
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),   /* dark bottom for text */
        rgba(14, 165, 233, 0.15)  /* very light blue tint */
    );
}

.slide-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: white;
}

.slide-label {
    font-size: 13px;
    font-weight: 600;
    color: #fcd34d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.slide-desc {
    color: #f3f4f6;
    font-size: 14px;
    line-height: 1.5;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 10;
    color: #1f2937;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev { left: 16px; }
.slider-btn-next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 32px;
    background: white;
}

/* Stats Cards - Below Slider */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: #f5f5f5;
    padding: 24px 16px;
    margin: 0 -16px;
}

.stat-card {
    background: white;
    padding: 32px 16px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.04),
        0 0 1px rgba(0,0,0,0.04);
    transition: all 0.3s;
    border: none;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0,0,0,0.08),
        0 0 1px rgba(0,0,0,0.04);
}

.stat-card svg {
    margin: 0 auto 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.4;
}

/* Right Column - Content */
.hero-right-column {
    order: 1; /* Default: comes first on mobile */
}

.hero-right-column .badge {
    display: inline-block;
    background: #fed7aa;
    color: #c2410c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 28px;
    line-height: 1.6;
}
    color: #c2410c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #86efac;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.pricing-content {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-label {
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-value {
    font-size: 36px;
    font-weight: bold;
    color: #15803d;
}

.pricing-onwards {
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    background: white;
    border: 2px solid var(--gray-100);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    cursor: default;
}

.feature-item:hover {
    border-color: #fb923c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.feature-icon {
    background: linear-gradient(135deg, #fb923c, var(--orange-600));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.cta-box:hover {
    transform: scale(1.02);
}

.cta-label {
    color: #fed7aa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cta-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight-yellow {
    color: #fde047;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-white {
    background: white;
    color: var(--orange-600);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-green {
    background: var(--green-600);
    color: white;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-green:hover {
    background: var(--green-700);
}

.btn-orange {
    background: var(--orange-600);
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-orange:hover {
    background: var(--orange-700);
}

.btn-full {
    width: 100%;
}

.cta-phone {
    color: #fed7aa;
    font-size: 12px;
    text-align: center;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
    padding: 16px;
    border-radius: 12px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--orange-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-left: -8px;
}

.social-proof-title {
    font-weight: bold;
    color: var(--gray-800);
    font-size: 14px;
}

.social-proof-subtitle {
    font-size: 12px;
    color: var(--gray-600);
}

.video-section {
    background: #060A08;
    padding: 80px 20px;
    color: #fff;
}

.video-section .section-header {
    margin-bottom: 50px;
}

.video-section .section-header h2 {
    color: #F3EFE7;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
}

.highlight-gold {
    color: #C5A059;
}

.video-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C5A059, #DCC287);
    margin: 18px auto 0;
    border-radius: 2px;
}

.video-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.08);
    border-radius: 50px;
    font-size: 11px;
    color: #C5A059;
    margin-bottom: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Bullet items */
.video-bullets {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.video-bullet-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.video-bullet-right {
    justify-content: flex-end;
    text-align: right;
}

.video-bullet-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.video-bullet-item:hover .video-bullet-icon {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.5);
}

.video-bullet-text {
    font-size: 15px;
    color: #A3A8A5;
    font-weight: 500;
    transition: color 0.3s;
}

.video-bullet-item:hover .video-bullet-text {
    color: #F3EFE7;
}

/* Video wrapper */
.video-center {
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1E2B24;
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.06), 0 0 120px rgba(27, 67, 50, 0.08);
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-wrapper:hover .video-overlay {
    background: rgba(0,0,0,0.3);
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
    padding-left: 4px;
}

.video-wrapper:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.7);
}

.video-labels {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.video-label-left,
.video-label-right {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

/* Desktop 3-column */
@media (min-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 991px) {
    .video-bullets-right .video-bullet-item {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
    }
    .video-bullet-right {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row-reverse;
    }
    .video-section .section-header h2 {
        font-size: 32px;
    }
}

/* Amenities Section */
.amenities-section,
.nearby-section,
.contact-section {
    padding: 80px 0;
}

.amenities-section {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: var(--orange-500);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-top: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.amenity-card {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fb923c, var(--orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.amenity-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Nearby Locations */
.nearby-section {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--orange-500);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-icon {
    font-size: 24px;
}

.location-info h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.location-distance {
    font-size: 14px;
    color: var(--blue-600);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.text-orange {
    color: var(--orange-500);
}

.agent-card {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-top: 24px;
}

.agent-header {
    position: relative;
    width: fit-content;
    margin-bottom: 20px;
}

.agent-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--orange-500);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.agent-status {
    position: absolute;
    bottom: 4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    border-radius: 50%;
    border: 4px solid white;
}

.agent-details h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.agent-details p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.method-icon {
    background: #fed7aa;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.method-label {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.contact-method a {
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--orange-500);
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--gray-50), white);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo h3 {
    font-size: 20px;
}

.footer-col h4 {
    color: #fb923c;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fb923c;
}

.contact-list li {
    color: #9ca3af;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--orange-500);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fb923c;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--orange-500);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
    gap: 12px;
}

.sticky-cta .btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

/* Toast */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    align-items: start;
    gap: 16px;
}

.toast-icon {
    width: 32px;
    height: 32px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.toast-text p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 45fr 55fr;
        align-items: start;
        gap: 48px;
    }
    
    .hero-left-content {
        order: 1;
    }
    
    .hero-slider-wrapper {
        order: 2;
    }
    
    .hero-slider {
        height: 650px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .stats-cards {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile: Content first, then slider */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-right-column {
        order: 1; /* Content shows first */
    }
    
    .hero-left-column {
        order: 2; /* Slider shows after content */
    }
    
    
    .hero-title {
        font-size: 32px;
    }
    
    .pricing-value {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-proof {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sticky-cta {
        display: flex;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .urgency-banner {
        font-size: 13px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .slider-badges {
        justify-content: center;
    }
    
    .badge-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* Desktop Layout */
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 40fr 60fr;
        gap: 64px;
    }
    
    .hero-left-column {
        order: 1; /* Slider on left */
    }
    
    .hero-right-column {
        order: 2; /* Content on right */
    }
    
    .hero-slider {
        height: 520px;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

/* Mobile Header Optimization */
@media (max-width: 768px) {

    .header {
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }

    .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.45),
            rgba(14, 165, 233, 0.15)
        ) !important;
    }

}
    
    .header-content {
        height: 65px;
        padding: 0 12px;
    }
    
    .logo-circle {
        width: 55px;
        height: 55px;
    }
    
    .logo-text {
        font-size: 10px;
    }
    
    .hero-section {
        padding-top: 85px;
    }
}

/* Mobile Stats Cards - Keep 3 columns */
@media (max-width: 768px) {
    .stats-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 20px 12px;
        margin: 0 -12px;
    }
    
    .stat-card {
        padding: 24px 12px;
        border-radius: 24px;
    }
    
    .stat-card svg {
        width: 32px;
        height: 32px;
        margin-bottom: 16px;
    }
    
    .stat-value {
        font-size: 28px;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Extra small screens - still keep 3 columns but smaller */
@media (max-width: 480px) {
    .stats-cards {
        gap: 8px;
        padding: 16px 8px;
    }
    
    .stat-card {
        padding: 20px 8px;
        border-radius: 20px;
    }
    
    .stat-card svg {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}
