/* ==========================================================================
   SD Raj Enterprises - Premium Corporate CSS (Final Polish)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    /* Primary Colors */
    --water-blue: #0077b6;
    --royal-blue: #03045e;
    
    /* Secondary Colors */
    --pure-white: #ffffff;
    --aqua-blue: #00b4d8;
    
    /* Accent Colors */
    --premium-silver: #c0c0c0;
    --soft-cyan: #90e0ef;
    
    /* Neutral Colors */
    --dark-text: #0f172a;
    --light-text: #475569;
    --bg-light: #f8fafc;
    --bg-dark: #020617;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--aqua-blue) 0%, var(--water-blue) 100%);
    --dark-gradient: linear-gradient(135deg, var(--royal-blue) 0%, var(--bg-dark) 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    --premium-glow: linear-gradient(135deg, var(--royal-blue), var(--water-blue), var(--aqua-blue), var(--royal-blue));
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -3px rgba(3, 4, 94, 0.1), 0 4px 6px -4px rgba(3, 4, 94, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(3, 4, 94, 0.25);
    --glow-primary: 0 0 20px rgba(0, 180, 216, 0.4);
    
    /* Glassmorphism */
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-border-light: 1px solid rgba(255, 255, 255, 0.6);
    --glass-highlight: inset 1px 1px 0 rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Global Reset & Typography --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-text);
    background-color: var(--pure-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utility Classes --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.section-padding { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .section-padding { padding: 80px 0; } } /* Mobile Spacing Fix */

.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }
.text-white { color: var(--pure-white) !important; }

/* --- Section Headers --- */
.section-header { margin-bottom: 4rem; }
.section-subtitle {
    color: var(--water-blue);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.section-subtitle::before, .section-subtitle::after {
    content: ''; width: 30px; height: 2px; background: var(--water-blue); display: inline-block; border-radius: 2px;
}
.section-title {
    font-size: 3rem; font-weight: 800; color: var(--royal-blue); line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -1px;
}
.section-description {
    color: var(--light-text); font-size: 1.125rem; max-width: 650px; margin: 0 auto;
}

/* --- Premium Image Placeholders --- */
.hero-bg, .image-card, .service-image, .gallery-item {
    background: var(--premium-glow); background-size: 300% 300%;
    animation: shimmerPlaceholder 8s ease-in-out infinite;
    position: relative; overflow: hidden;
}
.hero-bg::before, .image-card::before, .service-image::before, .gallery-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}
.hero-bg img, .image-card img, .service-image img, .gallery-item img {
    position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover;
}
@keyframes shimmerPlaceholder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem; border-radius: 50px; font-weight: 600; font-size: 1.05rem;
    cursor: pointer; transition: var(--transition-slow); gap: 0.75rem; border: none;
    position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    z-index: -1; transition: var(--transition-slow);
}
.btn-primary { background: var(--primary-gradient); color: var(--pure-white); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--glow-primary); }
.btn-primary:hover::before { opacity: 0; }

.btn-glass { background: rgba(255, 255, 255, 0.1); color: var(--pure-white); backdrop-filter: blur(12px); border: var(--glass-border); box-shadow: var(--glass-highlight); }
.btn-glass:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-4px); border-color: rgba(255,255,255,0.5); }

/* Pulse Animation for high conversion buttons */
.btn-pulse { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* --- Header --- */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: var(--transition-slow);
}
.header.scrolled {
    padding: 1rem 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-md);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 1rem; z-index: 1001; }

/* New Circular Logo Container */
.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 2px 5px rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.header.scrolled .logo-circle {
    background: rgba(0, 119, 182, 0.05);
    border-color: rgba(0, 119, 182, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.logo-img { height: 38px; width: 38px; object-fit: contain; }

.logo-text { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; text-align: left; }

.company-name { font-weight: 800; font-size: 1.4rem; color: var(--royal-blue); line-height: 1; letter-spacing: 1px; transition: var(--transition-fast); margin: 0; padding: 0; }
.header:not(.scrolled) .company-name { color: var(--pure-white); }
.company-tagline { font-size: 1.05rem; color: var(--water-blue); font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; line-height: 1.2; margin: 2px 0 0 0; padding: 0; transition: var(--transition-fast); }
.header:not(.scrolled) .company-tagline { color: var(--soft-cyan); }
.nav-menu ul { display: flex; gap: 3rem; }
.nav-menu a { font-weight: 600; font-size: 1.05rem; color: var(--dark-text); position: relative; padding: 0.5rem 0; }
.header:not(.scrolled) .nav-menu a { color: var(--pure-white); }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--aqua-blue); transition: var(--transition-fast); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.mobile-menu-btn { display: none; }

/* Header Logo Override */

.logo{
    gap:0 !important;
}

.logo-circle,
.logo-text{
    display:none !important;
}

.header-logo{
    height:70px;
    width:auto;
    max-width:350px;
    object-fit:contain;
    display:block;
}

@media (max-width:768px){
    .header-logo{
        height:50px;
        max-width:220px;
    }
}

/* --- Hero Section --- */
.hero { position: relative; height: 100vh; min-height: 800px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.95) 0%, rgba(0, 119, 182, 0.7) 60%, rgba(0, 0, 0, 0.2) 100%); z-index: -1;
}
.hero-content { color: var(--pure-white); max-width: 900px; padding-top: 80px; }
.hero-title { font-size: 5.5rem; font-weight: 800; line-height: 1.05; margin-bottom: 2rem; letter-spacing: -2px; }
.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--soft-cyan), var(--pure-white), var(--aqua-blue));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: 1.35rem; font-weight: 400; opacity: 0.95; margin-bottom: 3rem; max-width: 700px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1.5rem; }

/* Hero Scroll Indicator */
.scroll-down-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    color: var(--pure-white); display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 10; opacity: 0.8; transition: var(--transition-fast);
}
.scroll-down-indicator:hover { opacity: 1; transform: translateX(-50%) translateY(-5px); }
.mouse {
    width: 30px; height: 46px; border: 2px solid var(--pure-white); border-radius: 20px; position: relative;
}
.mouse::before {
    content: ''; width: 4px; height: 8px; background: var(--pure-white); position: absolute;
    top: 10px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scrollWheel 2s infinite;
}
.scroll-text { font-size: 0.85rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
@keyframes scrollWheel { 0% { top: 8px; opacity: 1; } 100% { top: 24px; opacity: 0; } }

/* Floating Elements Animation */
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }

/* --- About Section --- */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: center; }
.image-card {
    border-radius: 30px; box-shadow: var(--shadow-lg); padding: 1rem;
    background: rgba(255,255,255,0.5); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8); position: relative;
}
.image-card img { border-radius: 20px; aspect-ratio: 4/5; }
.experience-badge {
    position: absolute; bottom: -40px; right: -40px;
    background: var(--dark-gradient); color: var(--pure-white); padding: 2.5rem; border-radius: 24px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg), var(--glass-highlight); border: 1px solid rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite; z-index: 10;
}
.experience-badge .counter { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.experience-badge .badge-text { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--soft-cyan); margin-top: 0.5rem; }
.about-description { font-size: 1.2rem; color: var(--light-text); margin-bottom: 3rem; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-item {
    display: flex; align-items: center; gap: 1.25rem; padding: 1rem;
    background: var(--pure-white); border-radius: 16px; box-shadow: var(--shadow-sm);
    transition: var(--transition-slow); border: 1px solid rgba(0,0,0,0.02);
}
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 119, 182, 0.05));
    color: var(--water-blue); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; transition: var(--transition-fast);
}
.feature-item:hover .feature-icon { background: var(--primary-gradient); color: var(--pure-white); transform: scale(1.1) rotate(5deg); box-shadow: var(--glow-primary); }
.feature-text { font-weight: 700; color: var(--dark-text); font-size: 1.1rem; }

/* --- Services Section --- */
.services { position: relative; }
.services::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 180, 216, 0.05) 0%, transparent 60%); pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.service-card {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px);
    border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition-slow); position: relative;
    border: 1px solid rgba(255,255,255,0.8); border-top: 1px solid rgba(255,255,255,1); border-left: 1px solid rgba(255,255,255,1);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
.service-image { position: relative; height: 260px; overflow: hidden; }
.service-image::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(3,4,94,0.8) 100%); z-index: 3;
}
.service-image img { transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
.service-card:hover .service-image img { transform: scale(1.15); }
.service-icon {
    position: absolute; bottom: 20px; right: 20px; width: 65px; height: 65px;
    background: var(--primary-gradient); color: var(--pure-white); border-radius: 18px;
    display: flex; justify-content: center; align-items: center; font-size: 1.75rem;
    box-shadow: var(--shadow-md), inset 1px 1px 0 rgba(255,255,255,0.4); z-index: 4;
}
.service-content { padding: 2.5rem; position: relative; z-index: 2; background: var(--pure-white); flex-grow: 1; display: flex; flex-direction: column; }
.service-content h3 { font-size: 1.5rem; color: var(--royal-blue); margin-bottom: 1.5rem; font-weight: 800; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 1rem; }
.service-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; flex-grow: 1; }
.service-list li { display: flex; align-items: center; gap: 1rem; color: var(--light-text); font-weight: 500; font-size: 1.05rem; }
.service-list li i { color: var(--aqua-blue); font-size: 1.2rem; }
.service-link {
    color: var(--water-blue); font-weight: 700; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.5rem;
    transition: var(--transition-fast);
}
.service-card:hover .service-link { color: var(--royal-blue); }
.service-link i { transition: transform 0.3s ease; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* --- Brands Section --- */
.brands { background: var(--dark-gradient); position: relative; overflow: hidden; }
.brands::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 50%); z-index: 0; animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { 100% { transform: rotate(360deg); } }
.brands-wrapper {
    padding: 6rem; display: flex; flex-direction: column; gap: 4rem; position: relative; z-index: 1;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); border-radius: 30px; border: var(--glass-border);
}
.brands-content { text-align: center; max-width: 800px; margin: 0 auto; }
.brands-marquee { overflow: hidden; white-space: nowrap; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-content { display: inline-flex; gap: 2rem; animation: scroll 35s linear infinite; }
.brand-tag {
    padding: 1.25rem 2.5rem; background: rgba(255, 255, 255, 0.05); border: var(--glass-border); border-radius: 12px;
    color: var(--pure-white); font-weight: 700; font-size: 1.25rem; backdrop-filter: blur(10px);
    transition: var(--transition-fast); box-shadow: var(--shadow-sm); letter-spacing: 1px; text-transform: uppercase;
}
.brand-tag:hover { background: var(--primary-gradient); transform: translateY(-5px); box-shadow: var(--shadow-md), var(--glow-primary); border-color: rgba(255,255,255,0.5); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 1rem)); } }

/* --- Process Section --- */
.process-timeline { display: flex; justify-content: space-between; align-items: center; position: relative; padding: 4rem 0; }
.process-step { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; z-index: 2; width: 160px; }
.step-icon {
    width: 90px; height: 90px; background: var(--pure-white); border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 2.25rem; color: var(--water-blue); box-shadow: var(--shadow-md); position: relative; transition: var(--transition-slow);
}
.step-number {
    position: absolute; top: -5px; right: -5px; width: 35px; height: 35px; background: var(--primary-gradient); color: var(--pure-white);
    border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1rem; font-weight: 800; border: 3px solid var(--pure-white); box-shadow: var(--shadow-sm);
}
.step-title { font-size: 1.2rem; font-weight: 700; color: var(--royal-blue); }
.process-step:hover .step-icon { background: var(--primary-gradient); color: var(--pure-white); transform: translateY(-15px) scale(1.05); box-shadow: var(--shadow-lg), var(--glow-primary); }
.process-connector { flex-grow: 1; height: 3px; background: linear-gradient(90deg, var(--water-blue), var(--aqua-blue)); margin: 0 1rem; transform: translateY(-25px); opacity: 0.3; }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.gallery-item { border-radius: 24px; aspect-ratio: 1/1; cursor: pointer; box-shadow: var(--shadow-md); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5;
    background: rgba(3, 4, 94, 0.4); backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: var(--transition-slow); border-radius: 24px;
}
.gallery-overlay i {
    color: var(--pure-white); font-size: 3rem; transform: scale(0.5) translateY(20px); transition: var(--transition-slow);
    background: rgba(255,255,255,0.2); padding: 1.5rem; border-radius: 50%; border: var(--glass-border);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1) translateY(0); }

/* --- Testimonials Section --- */
.testimonials { background: var(--bg-dark); position: relative; overflow: hidden; }
.testimonials::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(0, 180, 216, 0.15) 0%, transparent 60%); z-index: 0;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; z-index: 1; }
.testimonial-card {
    padding: 3.5rem 2.5rem; display: flex; flex-direction: column; gap: 2rem;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05); transition: var(--transition-slow);
    box-shadow: inset 1px 1px 0 rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.3);
}
.testimonial-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.quote-icon { font-size: 3rem; color: var(--aqua-blue); opacity: 0.8; line-height: 1; }
.testimonial-text { color: var(--pure-white); font-size: 1.2rem; font-style: italic; flex-grow: 1; line-height: 1.8; opacity: 0.9; }
.client-info { display: flex; align-items: center; gap: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
.client-avatar {
    width: 60px; height: 60px; border-radius: 50%; background: var(--primary-gradient);
    display: flex; justify-content: center; align-items: center; color: var(--pure-white); font-size: 1.5rem;
    box-shadow: var(--shadow-sm); border: 2px solid rgba(255,255,255,0.2);
}
.client-info h4 { color: var(--pure-white); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.2rem; }
.client-info span { color: var(--soft-cyan); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.contact-desc { color: var(--light-text); font-size: 1.2rem; margin-bottom: 3rem; line-height: 1.8; }
.info-items { display: flex; flex-direction: column; gap: 2rem; }
.info-item {
    display: flex; align-items: center; gap: 1.5rem; padding: 2rem;
    background: var(--pure-white); border-radius: 20px; box-shadow: var(--shadow-sm);
    transition: var(--transition-slow); border: 1px solid rgba(0,0,0,0.03);
}
.info-item:hover { transform: translateX(10px); box-shadow: var(--shadow-md); border-color: var(--soft-cyan); }
.info-icon {
    width: 70px; height: 70px; background: var(--primary-gradient); color: var(--pure-white); border-radius: 16px;
    display: flex; justify-content: center; align-items: center; font-size: 1.75rem; box-shadow: var(--shadow-md);
}
.info-details h4 { color: var(--royal-blue); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.info-details p { color: var(--light-text); font-size: 1.1rem; }

.contact-form-wrapper { position: relative; }
.contact-form-wrapper::before {
    content: ''; position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
    background: var(--primary-gradient); border-radius: 30px; opacity: 0.1; z-index: -1;
}
.contact-form { padding: 4rem; background: var(--pure-white); border-radius: 30px; box-shadow: var(--shadow-lg); }
.form-title { font-size: 2rem; color: var(--royal-blue); font-weight: 800; margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-control {
    width: 100%; padding: 1.25rem 1.5rem; border: 2px solid var(--bg-light); border-radius: 12px;
    font-family: inherit; font-size: 1.05rem; color: var(--dark-text); transition: var(--transition-fast);
    background: var(--bg-light); font-weight: 500;
}
.form-control:focus { outline: none; border-color: var(--water-blue); background: var(--pure-white); box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1); }
textarea.form-control { resize: vertical; min-height: 150px; }
.trust-badge { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: var(--light-text); font-size: 0.9rem; font-weight: 600; }
.trust-badge i { color: #10b981; }

/* --- Footer --- */
.footer { background: #020617; color: var(--pure-white); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer-logo-img { height: 40px; width: auto; }
.footer-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--pure-white); }
.footer-about { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; justify-content: center; align-items: center; color: var(--pure-white); transition: var(--transition-fast);
}
.social-links a:hover { background: var(--aqua-blue); transform: translateY(-3px); }
.footer h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--soft-cyan); font-weight: 700; }
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a, .footer-services a { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
.footer-links a i, .footer-services a i { font-size: 0.75rem; color: var(--aqua-blue); transition: var(--transition-fast); }
.footer-links a:hover, .footer-services a:hover { color: var(--pure-white); padding-left: 5px; }
.footer-newsletter p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.newsletter-form { display: flex; background: rgba(255,255,255,0.1); border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.2); }
.newsletter-form input { flex-grow: 1; background: transparent; border: none; padding: 1rem 1.5rem; color: var(--pure-white); outline: none; }
.newsletter-form button { background: var(--primary-gradient); border: none; padding: 0 1.5rem; color: var(--pure-white); cursor: pointer; transition: var(--transition-fast); }
.newsletter-form button:hover { background: var(--aqua-blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.6); }
.footer-legal a:hover { color: var(--pure-white); }

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .hero-title { font-size: 4.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3.5rem; }
    .brands-wrapper { padding: 4rem 2rem; }
    .contact-form { padding: 3rem 2rem; }
    
    /* Process Timeline Mobile Overhaul */
    .process-timeline { flex-direction: column; align-items: flex-start; gap: 2rem; padding: 2rem 1rem; border-left: 2px dashed rgba(0, 119, 182, 0.3); margin-left: 3rem; }
    .process-connector { display: none; }
    .process-step { flex-direction: row; text-align: left; width: 100%; transform: translateX(-47px); gap: 1.5rem; }
    .step-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .process-step:hover .step-icon { transform: translateX(10px) scale(1.05); }
    .step-number { width: 25px; height: 25px; font-size: 0.8rem; top: -5px; right: -5px; border-width: 2px; }
    
    /* Mobile Menu */
    .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--pure-white); box-shadow: -5px 0 15px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; transition: right 0.4s ease; z-index: 1000; }
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; text-align: center; gap: 2rem; }
    .nav-menu a { color: var(--dark-text) !important; font-size: 1.25rem; }
    .mobile-menu-btn { display: block; font-size: 1.5rem; cursor: pointer; color: var(--pure-white); }
    .header.scrolled .mobile-menu-btn { color: var(--dark-text); }
    .header-actions .btn { display: none; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.75rem; letter-spacing: -1px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .section-title { font-size: 2.25rem; }
    .services-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .experience-badge { right: 0; bottom: -20px; padding: 1.5rem; transform: scale(0.8); }
    .scroll-down-indicator { display: none; } /* Hide on small mobile to save space */
}
