/* ============================================
   REALTY SIMPLIFIED - MAIN STYLESHEET
   Theme: Professional Red (#d0303c) with Dark Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - from logo */
    --primary: #d0303c;
    --primary-dark: #a82530;
    --primary-light: #e85a64;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --gray-900: #16213e;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Accent Colors */
    --gold: #c9a227;
    --gold-light: #f0d878;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px rgba(208, 48, 60, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

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

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
    text-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(208, 48, 60, 0.1);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HOME / HERO SECTION
   ============================================ */
.home-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 50%, var(--dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(208, 48, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(208, 48, 60, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.home-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(208, 48, 60, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.home-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(208, 48, 60, 0.2);
    border: 1px solid rgba(208, 48, 60, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.hero-title .line-1 {
    display: block;
    font-weight: 500;
    opacity: 0.9;
}

.hero-title .line-2 {
    display: block;
}

.hero-title em {
    color: var(--primary);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 500px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(208, 48, 60, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
}

/* Hero Visual */
.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.visual-frame {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    backdrop-filter: blur(10px);
}

.youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-cta {
    margin-top: var(--space-md);
    text-align: center;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 0, 0, 0.1);
    border-radius: var(--radius-full);
    color: #ff0000;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.youtube-link:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.youtube-icon {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gray-500);
    border-bottom: 2px solid var(--gray-500);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gray-50);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.founder-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.founder-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    animation: pulse 2s infinite;
}

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

.exp-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-align: center;
    margin-top: var(--space-xs);
    opacity: 0.9;
}

.about-text {
    padding-top: var(--space-md);
}

.about-intro {
    margin-bottom: var(--space-xl);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.about-body p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.about-body a {
    font-weight: 600;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.highlight-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(208, 48, 60, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.highlight-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.highlight-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.service-card.featured {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
    border-color: transparent;
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .feature-text strong {
    color: var(--white);
}

.service-card.featured .service-intro,
.service-card.featured .feature-text p {
    color: var(--gray-400);
}

.featured-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(208, 48, 60, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.featured .service-icon {
    background: rgba(208, 48, 60, 0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
}

.service-card.featured .service-number {
    color: rgba(255, 255, 255, 0.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.service-intro {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

/* Investment Highlight */
.investment-highlight {
    margin-bottom: var(--space-xl);
}

.return-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.return-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.return-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Service Features */
.service-features {
    margin-bottom: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* Returns Table */
.returns-table-wrapper {
    margin: var(--space-xl) 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.returns-table-wrapper h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.returns-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.returns-table th,
.returns-table td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.returns-table th {
    font-weight: 600;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.returns-table td {
    color: var(--gray-300);
}

.returns-table .highlight-row td {
    background: rgba(208, 48, 60, 0.2);
    color: var(--white);
}

.table-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
    margin-bottom: 0;
    font-style: italic;
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-weight: 600;
    padding: var(--space-sm) 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.service-cta:hover {
    border-bottom-color: var(--primary);
}

.service-card.featured .service-cta {
    color: var(--primary-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
    color: var(--white);
}

.contact-section .section-tag {
    color: var(--primary-light);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-slow);
}

.contact-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(208, 48, 60, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-text h4 {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.contact-text p {
    color: var(--white);
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: var(--white);
}

.contact-text a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.required {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: var(--space-md);
    width: 100%;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
   
.footer {
    background: var(--dark);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-services h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-services a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin: 0;
}
.footer { padding: var(--space-4xl) 0 var(--space-xl); background: var(--dark); color: var(--gray-400); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--space-3xl); margin-bottom: var(--space-3xl); }
.footer-logo { height: 48px; margin-bottom: var(--space-md); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-nav h4 { color: var(--white); font-size: 0.9rem; font-family: var(--font-body); font-weight: 600; margin-bottom: var(--space-lg); }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: var(--space-sm); }
.footer-nav a { font-size: 0.9rem; color: var(--gray-500); }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom { padding-top: var(--space-xl); border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--gray-600); margin: 0; }


/* ============================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ============================================ */
@media (max-width: 1024px) {
    .home-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        margin: 0 auto var(--space-xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 400px;
    }
    
    .footer-nav {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px var(--space-xl) var(--space-xl);
        gap: var(--space-md);
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-base);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--gray-800);
        text-shadow: none;
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }
    
    .logo img {
        height: 50px;
    }
    
    .navbar.scrolled .logo img {
        height: 40px;
    }
    
    /* Hero Section */
    .home-section {
        min-height: auto;
        padding: 100px 0 var(--space-2xl);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* About Section */
    .about-image {
        max-width: 280px;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        top: -10px;
        right: -10px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 0.65rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    /* Services Section */
    .service-card {
        padding: var(--space-lg);
    }
    
    .service-card.featured {
        padding: var(--space-lg);
        padding-top: var(--space-2xl);
    }
    
    .returns-table {
        font-size: 0.75rem;
    }
    
    .returns-table th,
    .returns-table td {
        padding: var(--space-xs) var(--space-sm);
    }
    
    /* Contact Section */
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }
    
    .footer-nav li {
        margin-bottom: 0;
    }
    
    /* Modal */
    .modal-content {
        padding: var(--space-lg);
        margin: var(--space-md);
        max-height: 90vh;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.1rem;
    }
    
    /* YouTube Channel Card */
    .youtube-channel-card {
        padding: var(--space-md);
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .channel-logo {
        width: 50px;
        height: 50px;
    }
    
    .channel-info h3 {
        font-size: 1rem;
    }
    
    .channel-description p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    /* Hero */
    .home-section {
        padding: 80px 0 var(--space-xl);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }
    
    .btn {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .stat {
        align-items: center;
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .visual-frame {
        padding: var(--space-sm);
    }
    
    /* About */
    .about-image {
        max-width: 240px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: -8px;
        right: -8px;
    }
    
    .exp-number {
        font-size: 1.25rem;
    }
    
    .highlight-card {
        padding: var(--space-md);
    }
    
    /* Services */
    .service-card {
        padding: var(--space-md);
    }
    
    .service-card.featured {
        padding: var(--space-md);
        padding-top: var(--space-xl);
    }
    
    .service-list li {
        font-size: 0.9rem;
    }
    
    .investment-highlight {
        padding: var(--space-sm);
    }
    
    .return-number {
        font-size: 1.25rem;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: var(--space-md);
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-md);
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-nav h4 {
        font-size: 0.85rem;
        margin-bottom: var(--space-sm);
    }
    
    .footer-nav a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .youtube-embed,
    .social-links,
    .contact-form-wrapper {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR UPDATED CONTENT
   ============================================ */

/* Service Commitment Box */
.service-commitment {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(208, 48, 60, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.service-commitment h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.service-commitment p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Features Heading */
.features-heading {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--gray-200);
}

.service-card.featured .features-heading {
    color: var(--gray-300);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Terms & Conditions */
.terms-conditions {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.terms-conditions h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.terms-conditions h5 {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin: var(--space-lg) 0 var(--space-sm);
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Footer Legal Section */
.footer-legal h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

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

.footer-legal li {
    margin-bottom: var(--space-sm);
}

.footer-legal a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-base);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-content h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: var(--space-xl);
    padding-right: var(--space-2xl);
}

.modal-content h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: var(--space-xl) 0 var(--space-sm);
}

.modal-body p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.modal-body ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.modal-body li {
    color: var(--gray-700);
    margin-bottom: var(--space-xs);
}

/* Service card improvements for long content */
.service-card {
    display: flex;
    flex-direction: column;
}

.service-cta {
    margin-top: auto;
}

/* Improved table responsiveness */
@media (max-width: 600px) {
    .returns-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .returns-table {
        min-width: 320px;
    }
}

/* ============================================
   YOUTUBE CHANNEL CARD (REPLACEMENT FOR EMBED)
   ============================================ */
.youtube-channel-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    backdrop-filter: blur(10px);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.channel-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
}

.channel-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    text-align: left;
}

.channel-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.channel-description {
    margin-bottom: var(--space-xl);
}

.channel-description p {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: #FF0000;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
}

.youtube-subscribe-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
    color: var(--white);
}

.youtube-subscribe-btn .youtube-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   SIMPLIFIED SERVICE LIST STYLES
   ============================================ */
.service-list {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.service-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.service-list li strong {
    color: var(--gray-900);
}

.service-card.featured .service-list li {
    color: var(--gray-300);
}

.service-card.featured .service-list li::before {
    background: var(--primary-light);
}

.service-card.featured .service-list li strong {
    color: var(--white);
}

/* Compact returns table */
.returns-table-wrapper {
    margin: var(--space-lg) 0;
    padding: var(--space-md);
}

.returns-table-wrapper h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}
