/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    /* Colors */
    --c-bg: #0A1628; /* Deep Navy Blue */
    --c-card: #141D2B; /* Dark Charcoal */
    --c-card-glass: rgba(20, 29, 43, 0.7);
    --c-text: #FFFFFF; /* Pure White */
    --c-text-muted: #C9D1D9; /* Light Grey */
    --c-primary: #1A73E8; /* Electric Blue */
    --c-primary-hover: #1557B0;
    --c-accent: #F4A827; /* Gold / Amber */
    --c-success: #34A853; /* Emerald Green */
    --c-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    
    /* Spacing & Sizes */
    --container-padding: 1.5rem;
    --section-py: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--c-primary);
    color: white;
}

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

ul {
    list-style: none;
}

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

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

.text-gradient {
    background: linear-gradient(to right, #FFFFFF, #C9D1D9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--c-text-muted);
    font-size: 1.125rem;
}

/* ==========================================================================
   Backgrounds & Effects
   ========================================================================== */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 15% 50%, rgba(26, 115, 232, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(244, 168, 39, 0.05), transparent 25%);
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.glow-blue { background-color: rgba(26, 115, 232, 0.15); }
.glow-gold { background-color: rgba(244, 168, 39, 0.15); }

.top-right { top: -10%; right: -10%; width: 300px; height: 300px; filter: blur(100px); }
.bottom-left { bottom: -10%; left: -10%; width: 250px; height: 250px; filter: blur(100px); }
.mid-left { top: 50%; left: -20%; width: 400px; height: 400px; transform: translateY(-50%); filter: blur(120px); }
.top-right-large { top: 0; right: 0; width: 40%; height: 100%; filter: blur(150px); opacity: 0.5;}
.bottom-right-large { bottom: 0; right: 0; width: 400px; height: 400px; filter: blur(150px); }

/* Glassmorphism */
.glass-card {
    background: var(--c-card-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-border);
    border-radius: 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--c-primary);
    color: white;
    box-shadow: 0 0 15px rgba(26, 115, 232, 0.4);
}

.btn-primary:hover {
    background-color: var(--c-primary-hover);
    box-shadow: 0 0 25px rgba(26, 115, 232, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--c-primary);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   Section 1: Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(244, 168, 39, 0.3);
    padding: 0.75rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.025em;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--c-primary);
    border-radius: 50%;
}

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

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

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

.nav-cta {
    display: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .mobile-menu-btn { display: none; }
}

/* ==========================================================================
   Section 2: Hero
   ========================================================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.badge-gold {
    background-color: rgba(244, 168, 39, 0.1);
    border: 1px solid rgba(244, 168, 39, 0.2);
    color: var(--c-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    font-size: 0.875rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.text-success { color: var(--c-success); }

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: 2rem;
    border: 1px solid var(--c-border);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(244, 168, 39, 0.05);
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(244, 168, 39, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.image-card:hover::after {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: top center;
    filter: brightness(0.95);
    display: block;
}

.floating-badge {
    position: absolute;
    background: var(--c-card-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--c-border);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.badge-bottom-left {
    bottom: 1.5rem;
    left: -1rem;
    padding: 0.75rem 1.25rem;
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: 2.5rem;
    right: -0.5rem;
    padding: 0.5rem 1rem;
    animation: float 5s ease-in-out infinite 1s;
}

@media (min-width: 1024px) {
    .badge-bottom-left { left: -3rem; }
    .badge-top-right { right: -2rem; }
}

.icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-gold {
    background-color: rgba(244, 168, 39, 0.2);
    color: var(--c-accent);
}

.badge-label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.badge-value {
    font-size: 0.875rem;
    font-weight: 700;
}

.emoji { font-size: 1.125rem; }

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

/* ==========================================================================
   Section 3: Trust Bar
   ========================================================================== */
.trust-bar {
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    padding: 2rem 0;
    overflow: hidden;
}

.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee::before, .marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--c-bg), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--c-bg), transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.trust-bar:hover .marquee-content {
    opacity: 1;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0 2rem;
}

.marquee-content i {
    font-size: 1.5rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Section 4: Services
   ========================================================================== */
.services {
    padding: var(--section-py) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.service-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-blue { background: rgba(26, 115, 232, 0.1); color: var(--c-primary); }
.icon-green { background: rgba(52, 168, 83, 0.1); color: var(--c-success); }
.icon-purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.icon-gold { background: rgba(234, 179, 8, 0.1); color: var(--c-accent); }
.icon-red { background: rgba(248, 113, 113, 0.1); color: #f87171; }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--c-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(244, 168, 39, 0.1);
    border: 1px solid rgba(244, 168, 39, 0.2);
    color: var(--c-accent);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-primary);
}

.price small {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    font-weight: 400;
}

.popular-card {
    border-color: rgba(26, 115, 232, 0.3);
    box-shadow: 0 0 30px rgba(26, 115, 232, 0.1);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--c-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.75rem;
}

/* ==========================================================================
   Section 5: About
   ========================================================================== */
.about {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

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

.stat-card {
    background: var(--c-card-glass);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border-top: 2px solid;
}

.border-blue { border-top-color: rgba(26, 115, 232, 0.5); }
.border-gold { border-top-color: rgba(244, 168, 39, 0.5); }
.border-green { border-top-color: rgba(52, 168, 83, 0.5); }
.border-purple { border-top-color: rgba(168, 85, 247, 0.5); }

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.usp-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.usp-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(52, 168, 83, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.check-icon i {
    color: var(--c-success);
    font-size: 0.875rem;
}

.usp-list strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: white;
}

.usp-list span {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.about-image-wrapper {
    position: relative;
}

.image-bg-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(26, 115, 232, 0.2), transparent);
    border-radius: 2rem;
    transform: rotate(3deg) scale(1.05);
    z-index: 0;
}

.about-img-container {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1;
    aspect-ratio: 3/4;
}

@media (min-width: 768px) {
    .about-img-container {
        aspect-ratio: 9/16;
    }
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ==========================================================================
   Section 6: Process
   ========================================================================== */
.process {
    padding: var(--section-py) 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.process-timeline {
    position: relative;
}

.timeline-line {
    display: none;
    position: absolute;
    top: 4.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    z-index: 0;
}

@media (min-width: 768px) {
    .timeline-line { display: block; }
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

.step-card {
    background: rgba(20, 29, 43, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background-color: var(--c-bg);
    border: 2px solid var(--c-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(26, 115, 232, 0.3);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--c-primary);
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

/* ==========================================================================
   Section 7: Pricing
   ========================================================================== */
.pricing {
    padding: var(--section-py) 0;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .pricing-cards {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 1rem;
    }
}

.price-card {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
    .price-card { width: 25%; }
    .featured-card { width: 30%; }
}

.featured-card {
    border: 2px solid rgba(244, 168, 39, 0.5);
    box-shadow: 0 0 40px rgba(244, 168, 39, 0.15);
    background: linear-gradient(to bottom, #1c283d, var(--c-bg));
    padding: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .featured-card {
        transform: translateY(-1rem);
    }
    .featured-card:hover {
        transform: translateY(-1.5rem);
    }
}

.featured-tag {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--c-accent);
    color: var(--c-bg);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.price-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.featured-card h3 {
    font-size: 1.5rem;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 1rem;
}

.featured-card .price-amount {
    font-size: 2.5rem;
}

.price-amount small {
    font-size: 1rem;
    color: var(--c-text-muted);
    font-weight: 400;
}

.delivery-badge-light {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(244, 168, 39, 0.1);
    color: var(--c-accent);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.featured-card .feature-list {
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-list i {
    color: var(--c-primary);
    margin-top: 0.125rem;
}

.gold-checks i {
    color: var(--c-accent);
}

/* ==========================================================================
   Section 8: Contact
   ========================================================================== */
.contact {
    padding: var(--section-py) 0;
    background-color: rgba(0, 0, 0, 0.4);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.form-card {
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #D1D5DB;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #4B5563;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 1px var(--c-primary);
}

.form-group textarea {
    resize: none;
}

.form-status {
    text-align: center;
    font-size: 0.875rem;
    color: var(--c-success);
    margin-top: 1rem;
}

.hidden {
    display: none;
}

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

.info-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.hover-border-blue:hover { border-color: rgba(26, 115, 232, 0.3); }
.hover-border-gold:hover { border-color: rgba(244, 168, 39, 0.3); }
.hover-border-green:hover { border-color: rgba(52, 168, 83, 0.3); }

.info-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid;
}

.info-icon.icon-blue { background: rgba(26, 115, 232, 0.1); border-color: rgba(26, 115, 232, 0.2); }
.info-icon.icon-gold { background: rgba(244, 168, 39, 0.1); border-color: rgba(244, 168, 39, 0.2); }
.info-icon.icon-green { background: rgba(52, 168, 83, 0.1); border-color: rgba(52, 168, 83, 0.2); }

.info-label {
    font-size: 0.75rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    word-break: break-all;
}

.info-value span {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-weight: 400;
}

.hover-border-blue:hover .info-value { color: var(--c-primary); }
.hover-border-gold:hover .info-value { color: var(--c-accent); }

.quote-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, var(--c-card), black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.quote-img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--c-primary);
    position: relative;
    z-index: 10;
}

.quote-content {
    position: relative;
    z-index: 10;
}

.quote-text {
    font-size: 0.875rem;
    font-style: italic;
    color: #D1D5DB;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.quote-author {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary);
}

/* ==========================================================================
   Section 9: Footer
   ========================================================================== */
.footer {
    background-color: var(--c-bg);
    border-top: 1px solid rgba(244, 168, 39, 0.3);
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        text-align: left;
    }
}

.brand-desc {
    font-size: 0.875rem;
    color: var(--c-text-muted);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-text-muted);
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-socials {
        justify-content: flex-end;
    }
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.copyright {
    font-size: 0.75rem;
    color: #6B7280;
}

.legal-links {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6B7280;
}

.legal-links a:hover {
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Utilities */
.w-full { width: 100%; }
