/* ============================================
   REDDY APP START - STYLE SHEET
   Theme: Crimson Red + Dark Navy + White
   Font: Space Grotesk (Variable)
   Pattern: Glass-morphism, diagonal sections, asymmetric layouts
   ============================================ */

/* --- Font Face --- */
@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/spacegrotesk-variable.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
    font-style: normal;
}

/* --- CSS Variables --- */
:root {
    --crimson: #DC2626;
    --crimson-dark: #B91C1C;
    --crimson-light: #EF4444;
    --crimson-glow: rgba(220, 38, 38, 0.3);
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-mid: #334155;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --gradient-crimson: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-crimson-bright: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --gradient-navy: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-hero: linear-gradient(160deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-bg-dark: rgba(15, 23, 42, 0.6);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.16);
    --shadow-crimson: 0 4px 16px rgba(220, 38, 38, 0.3);
    --shadow-crimson-lg: 0 8px 32px rgba(220, 38, 38, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Utility Classes --- */
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 28px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 32px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-crimson-lg);
    background: var(--gradient-crimson-bright);
}

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

.btn-outline:hover {
    background: var(--crimson);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Styles --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--crimson);
    border-radius: 1px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    max-width: 640px;
    font-size: 1.1rem;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-header.center .section-desc {
    margin: 0 auto;
}

.section-header.center .section-label {
    justify-content: center;
}

/* --- Background Utilities --- */
.bg-light {
    background: var(--gray-100);
}

.bg-navy {
    background: var(--navy);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    z-index: 1001;
}

.header.scrolled .logo {
    color: var(--navy);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-crimson);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

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

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header.scrolled .nav-links a {
    color: var(--text-secondary);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--crimson);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--navy);
}

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

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

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

/* Mobile Menu - Hidden on desktop */
.mobile-menu {
    display: none;
}

/* ============================================
   HERO SECTION - Asymmetric Layout
   ============================================ */
.hero {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--crimson-light);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--crimson);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 .highlight {
    background: var(--gradient-crimson);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    color: var(--gray-400);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.hero-stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-float-card .card-icon {
    font-size: 1.4rem;
}

.hero-float-card .card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.hero-float-card.card-1 {
    top: -20px;
    left: -30px;
}

.hero-float-card.card-2 {
    bottom: -20px;
    right: -20px;
    animation-delay: -3s;
}

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

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-crimson);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(220, 38, 38, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 16px;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-card-features span {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.service-card-link {
    font-weight: 600;
    color: var(--crimson);
    font-size: 0.95rem;
}

.service-card-link:hover {
    color: var(--crimson-dark);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 36px;
    height: 36px;
    background: var(--gradient-crimson);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-crimson);
}

.process-step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.process-step h4 {
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(220, 38, 38, 0.15);
}

.why-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.why-card h4 {
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-sidebar .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--crimson);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--crimson);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.92rem;
}

.cta-contact-item a {
    color: var(--gray-300);
}

.cta-contact-item a:hover {
    color: var(--crimson-light);
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    background: var(--gradient-hero);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.breadcrumb a {
    color: var(--gray-400);
}

.breadcrumb a:hover {
    color: var(--crimson-light);
}

.breadcrumb span {
    color: var(--gray-500);
}

.breadcrumb .current {
    color: var(--crimson-light);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-header h1 .highlight {
    background: var(--gradient-crimson);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--gray-400);
    max-width: 640px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   SERVICE DETAIL (Services Page)
   ============================================ */
.service-detail {
    padding: 80px 0;
}

.service-detail + .service-detail {
    border-top: 1px solid var(--gray-200);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.service-detail-layout.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail-layout.reverse .service-detail-image {
    order: 2;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 16px;
}

.service-features-list {
    margin: 24px 0;
}

.service-features-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-features-list .check {
    color: var(--crimson);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   PRICING / VALUE CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.value-card h4 {
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    padding: 80px 0;
}

.about-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-layout p {
    margin-bottom: 16px;
}

/* Values Grid */
.about-values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.contact-info-card a {
    color: var(--crimson);
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-info-card a:hover {
    color: var(--crimson-dark);
}

.contact-callout {
    background: var(--navy);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
}

.contact-callout h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.contact-callout p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--crimson);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--crimson);
}

.form-error {
    color: var(--crimson);
    font-size: 0.82rem;
    margin-top: 4px;
}

.form-submit {
    margin-top: 8px;
}

.form-note {
    font-size: 0.82rem !important;
    color: var(--gray-500) !important;
    line-height: 1.6 !important;
}

.form-note a {
    color: var(--crimson);
    text-decoration: underline;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-crimson);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.form-success h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.form-success a {
    color: var(--crimson);
    font-weight: 600;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    padding: 60px 0 80px;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content .last-updated {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-content a {
    color: var(--crimson);
}

.legal-content a:hover {
    color: var(--crimson-dark);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 0.92rem;
}

.footer-col ul li a:hover {
    color: var(--crimson-light);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    color: var(--gray-400);
    align-items: flex-start;
}

.footer-contact-item .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--gray-400);
}

.footer-contact-item a:hover {
    color: var(--crimson-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--crimson-light);
}

.footer-disclaimer {
    color: var(--gray-500);
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--navy-mid);
    text-align: center;
    grid-column: 1 / -1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        max-width: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-layout,
    .service-detail-layout.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-layout.reverse .service-detail-image {
        order: 0;
    }

    .about-intro-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu a {
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 500;
    }

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

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-float-card {
        display: none;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-info {
        flex-direction: column;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .page-header {
        padding: 120px 0 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .service-card {
        padding: 28px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
