/* CSS Reset & Variable Definitions */
:root {
    /* Color Palette */
    --color-bg-deep: #020613;
    --color-bg-dark: #050c1f;
    --color-primary: #0c55ea;
    --color-primary-hover: #1b66ff;
    --color-accent-blue: #0066ff;
    --color-text-white: #ffffff;
    --color-text-muted: #94a3b8;
    --color-border-glass: rgba(255, 255, 255, 0.08);
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    --color-bg-glass-hover: rgba(255, 255, 255, 0.06);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --header-height: 90px;
    --max-width: 1440px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
}

body {
    font-family: var(--font-body);
    color: var(--color-text-white);
    background-color: var(--color-bg-deep);
    overflow-x: hidden;
    line-height: 1.5;
}

body.no-scroll {
    overflow: hidden; /* Disable scrolling when mobile menu is active */
}

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

/* Background Glowing Orbs for Premium Vibe */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

#orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-blue) 0%, rgba(12, 85, 234, 0) 70%);
    top: -200px;
    left: -100px;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

#orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00d2ff 0%, rgba(0, 102, 255, 0) 70%);
    top: 30%;
    right: -200px;
    opacity: 0.1;
    animation: pulse-glow 12s infinite alternate-reverse ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.12;
    }
    100% {
        transform: translate(30px, 50px) scale(1.1);
        opacity: 0.2;
    }
}

/* Header & Navigation Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.site-header.scrolled {
    background: rgba(2, 6, 19, 0.85);
    backdrop-filter: blur(20px);
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-image {
    height: 117px; /* Increased by 50% on top of current (78px * 1.5) */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-image {
    height: 103px; /* Increased by 50% on top of current (69px * 1.5) */
}

/* Nav Menu Items */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-white);
}

/* Active Link Underline Indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: var(--color-accent-blue);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--color-accent-blue);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.chevron-icon {
    transition: var(--transition-fast);
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(5, 12, 31, 0.95);
    border: 1px solid var(--color-border-glass);
    border-radius: 8px;
    padding: 0.8rem 0;
    width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.04);
    padding-left: 1.8rem;
}

/* Header Contact Section */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.phone-badge {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(12, 85, 234, 0.2) 0%, rgba(0, 102, 255, 0.4) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-white);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.phone-badge:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(12, 85, 234, 0.3) 0%, rgba(0, 102, 255, 0.5) 100%);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: #3b82f6;
    animation: phone-shake 3s infinite ease-in-out;
}

.phone-badge-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid rgba(0, 102, 255, 0.5);
    animation: ring-pulse 2s infinite ease-out;
    pointer-events: none;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes phone-shake {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-10deg); }
    94% { transform: rotate(12deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(12deg); }
}

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

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.contact-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
}

.contact-number:hover {
    color: var(--color-accent-blue);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-deep);
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Blending hero image with overlays */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: 1;
}

/* Gradient overlay for blending and text readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Left to right gradient overlay */
    background: linear-gradient(90deg, 
        rgba(2, 6, 19, 1) 0%, 
        rgba(2, 6, 19, 0.95) 25%, 
        rgba(2, 6, 19, 0.8) 45%, 
        rgba(2, 6, 19, 0.3) 70%, 
        rgba(2, 6, 19, 0) 100%);
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.highlight-blue {
    color: #1a73e8; /* Vivid Premium Blue */
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 580px;
}

/* Buttons Styling */
.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    box-shadow: 0 4px 20px rgba(12, 85, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Premium shine animation inside primary button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}

.btn-primary:hover::before {
    left: 150%;
}

/* Mouse-tracking hover glow gradient */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 80px at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.25), transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 85, 234, 0.45);
}

.btn-arrow {
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-phone-icon {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.btn-secondary:hover .btn-phone-icon {
    color: var(--color-text-white);
    animation: phone-shake 3s infinite ease-in-out;
}

/* Bottom Features Bar */
.features-bar-container {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem; /* Left-aligned matching layout padding */
    z-index: 10;
    width: auto;
}

.features-bar {
    display: inline-flex; /* Shrink-to-fit pill layout */
    align-items: center;
    background: rgba(2, 6, 19, 0.6); /* Transparent dark background */
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid var(--color-border-glass);
    border-radius: 12px;
    padding: 1rem 1.8rem;
    gap: 1.2rem; /* Clean gap spacing between items & dividers */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
    color: var(--color-text-white);
}

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

.feature-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
}

.feature-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Animations Trigger */
.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for loading sequence */
.hero-subtitle.visible { transition-delay: 0.1s; }
.hero-title.visible { transition-delay: 0.2s; }
.hero-description.visible { transition-delay: 0.3s; }
.hero-actions.visible { transition-delay: 0.4s; }
.features-bar-container.visible { transition-delay: 0.5s; }

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 2rem;
    }
    .hero-container {
        padding: 0 2rem;
    }
    .features-bar-container {
        left: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    /* Hide glowing blobs on mobile to prevent GPU lag and scrollbar overflows */
    .glow-orb {
        display: none !important;
    }

    /* Mobile navigation styles */
    .mobile-menu-toggle {
        display: flex;
    }

    .site-header {
        height: 70px;
    }

    .logo-image {
        height: 94px; /* Increased by 50% on top of current (63px * 1.5) */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        transform: translateX(100%);
        visibility: hidden; /* Hide to prevent layout width overflow scrollbar */
        background: rgba(3, 10, 29, 0.96);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--color-border-glass);
        z-index: 1000;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        padding: 7rem 2.5rem 2.5rem 2.5rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible; /* Show when open */
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.8rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-link.active::after {
        left: 0;
        transform: none;
        bottom: -2px;
        width: 30px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0 1rem;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .chevron-icon {
        transform: rotate(180deg);
    }

    /* Animated hamburger cross icon state */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Alignments */
    .hero-section::before {
        background-position: 70% center;
    }
    .hero-section::after {
        background: linear-gradient(90deg, 
            rgba(2, 6, 19, 1) 0%, 
            rgba(2, 6, 19, 0.95) 40%, 
            rgba(2, 6, 19, 0.8) 60%, 
            rgba(2, 6, 19, 0.4) 100%);
    }

    .features-bar-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        padding: 0 1.5rem 3rem 1.5rem;
        margin-top: -3rem;
        width: 100%;
    }

    .features-bar {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem;
        justify-content: flex-start;
        background: rgba(2, 6, 19, 0.8);
    }

    .feature-item {
        flex-basis: calc(50% - 0.6rem);
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .feature-divider {
        display: none;
    }

    .feature-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1.25rem;
    }

    .hero-container {
        padding: 0 1.25rem;
    }

    .header-contact {
        display: none; /* Hide top contact info stack, access via phone CTA or contact links */
    }

    .hero-section::before {
        background-position: 80% center;
        opacity: 0.65; /* Darken visual back on smaller screens */
    }

    .hero-section::after {
        background: radial-gradient(circle at center, rgba(2, 6, 19, 0.7) 0%, rgba(2, 6, 19, 1) 100%);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-top: 2rem;
        margin-bottom: 7rem;
    }

    .hero-title {
        font-size: 2rem; /* Reduced font size to prevent overflow on mobile */
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }

    /* Stack features vertically on portrait tablets and phones to avoid clipping */
    .feature-item {
        flex-basis: 100%;
    }

    .features-bar {
        gap: 1rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem; /* Small phone scaling */
    }
}

/* About Us Section Styles */
.about-section {
    background-color: #ffffff; /* Clean white background */
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.about-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left side slightly wider for the picture layout */
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: #f8fafc;
    aspect-ratio: 4 / 3;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03); /* Premium subtle zoom on hover */
}

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

.about-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tag-decorator {
    width: 6px;
    height: 16px;
    background-color: var(--color-accent-blue);
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.3);
}

.tag-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.1em;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a; /* Slate 900 */
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.about-description {
    font-size: 1.05rem;
    color: #475569; /* Slate 600 */
    line-height: 1.75;
}

.about-description strong {
    color: #0f172a;
}

/* About Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: var(--color-accent-blue);
    margin-bottom: 0.2rem;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--color-accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
    border-color: var(--color-accent-blue);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b; /* Slate 500 */
    line-height: 1.35;
}

/* Scroll reveal overrides for About section */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.scroll-reveal-left.visible,
.scroll-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive styles for About Section */
@media (max-width: 1200px) {
    .about-container {
        padding: 0 2rem;
        gap: 3.5rem;
    }
    .about-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 6rem 0;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        max-width: 650px;
        margin: 0 auto;
        aspect-ratio: 16 / 10;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 1.25rem;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-item {
        align-items: center;
        text-align: center;
    }
}

/* Services Section Styles */
.services-section {
    background-color: #f8fafc; /* Subtle light blue-gray background to separate sections */
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.services-header {
    max-width: var(--max-width);
    margin: 0 auto 4rem auto;
    padding: 0 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.services-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tag-decorator-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-blue);
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.4);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a; /* Slate 900 */
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.services-grid {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns grid on desktop */
    grid-auto-rows: 1fr; /* Force all rows to have equal height matching the tallest element */
    gap: 1.5rem;
}

.service-card {
    background-color: #050c1f; /* Dark card background */
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.1rem;
    align-items: center; /* Vertically align icon and text stack in the middle of the card */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.08);
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.12);
    color: var(--color-accent-blue);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-accent-blue);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.35);
    border-color: var(--color-accent-blue);
}

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

.service-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Service CTA Card Styling */
.service-cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(12, 85, 234, 0.25);
    padding: 1.5rem; /* Matched to regular cards padding */
    display: flex;
    align-items: stretch;
}

.service-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 1.2rem;
}

.service-cta-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-cta-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.btn-cta-outline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    margin-top: auto;
}

.btn-cta-outline:hover {
    background-color: #ffffff;
    color: var(--color-accent-blue);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-arrow {
    transition: var(--transition-fast);
}

.btn-cta-outline:hover .cta-arrow {
    transform: translateX(3px);
}

/* Services Responsiveness */
@media (max-width: 1200px) {
    .services-header {
        padding: 0 2rem;
    }
    .services-grid {
        padding: 0 2rem;
        grid-template-columns: repeat(4, 1fr); /* 4 columns on mid-desktops */
    }
    .services-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .services-section {
        padding: 6rem 0;
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on landscape tablets */
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-header {
        padding: 0 1.25rem;
        margin-bottom: 3rem;
    }
    .services-grid {
        padding: 0 1.25rem;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on portrait tablets/phones */
        gap: 1rem;
    }
    .services-title {
        font-size: 2rem;
    }
    
    /* Span CTA card across two columns on mobile/tablet */
    .service-cta-card {
        grid-column: span 2;
    }
    
    .service-cta-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        text-align: left;
    }
    
    .btn-cta-outline {
        margin-top: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on small phone screens */
    }
    
    .service-cta-card {
        grid-column: auto;
    }
    
    .service-cta-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .btn-cta-outline {
        margin-top: 1rem;
    }
}

/* Why Choose Us Section Styles */
.why-section {
    background-color: var(--color-bg-deep); /* Midnight background */
    padding: 8rem 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.why-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

.why-header {
    max-width: var(--max-width);
    margin: 0 auto 4rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.why-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.why-subtitle::before,
.why-subtitle::after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.4);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 8-column layout on desktop */
    gap: 1rem;
    width: 100%;
}

.why-card {
    background: rgba(5, 12, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.35);
    background: rgba(5, 12, 31, 0.85);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15), 0 0 15px rgba(0, 102, 255, 0.1);
}

.why-icon-container {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-blob {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(12, 85, 234, 0.4) 0%, rgba(0, 102, 255, 0.15) 100%);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.2));
}

.why-card:hover .why-blob {
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, rgba(12, 85, 234, 0.7) 0%, rgba(0, 102, 255, 0.3) 100%);
    filter: drop-shadow(0 6px 12px rgba(0, 102, 255, 0.4));
}

.why-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

/* Why Choose Us Responsiveness */
@media (max-width: 1200px) {
    .why-container {
        padding: 0 2rem;
    }
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
    .why-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .why-section {
        padding: 6rem 0;
    }
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .why-container {
        padding: 0 1.25rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .why-title {
        font-size: 2rem;
    }
    .why-card {
        padding: 1.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Recent Projects Section Styles */
.projects-section {
    background-color: #ffffff; /* White background to contrast with why-choose-us */
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.projects-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

.projects-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.projects-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.projects-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a; /* Slate 900 */
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* Filter Navigation */
.projects-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    border-color: var(--color-accent-blue);
    color: var(--color-accent-blue);
}

.filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(12, 85, 234, 0.25);
}

/* Projects Slider/Carousel Container */
.projects-slider-container {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.projects-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 1rem 0;
    width: 100%;
}

.projects-slider::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

/* Project Cards */
.project-card {
    flex: 0 0 calc((100% - (4 * 1.5rem)) / 5); /* 5 cards in viewport on desktop */
    min-width: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
}

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

.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

/* Hover overlay details */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(2, 6, 19, 0.9) 0%, rgba(2, 6, 19, 0.4) 60%, rgba(2, 6, 19, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.project-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: #0f172a;
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(12, 85, 234, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
    left: -23px;
}

.next-arrow {
    right: -23px;
}

/* Bottom CTA wrapper */
.projects-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsiveness for projects section */
@media (max-width: 1200px) {
    .projects-container {
        padding: 0 2rem;
    }
    
    .project-card {
        flex: 0 0 calc((100% - (3 * 1.5rem)) / 4); /* 4 visible on smaller desktop */
    }
    
    .prev-arrow {
        left: -10px;
    }
    
    .next-arrow {
        right: -10px;
    }
    
    .projects-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 1024px) {
    .projects-section {
        padding: 6rem 0;
    }
    
    .project-card {
        flex: 0 0 calc((100% - (2 * 1.2rem)) / 3); /* 3 visible on tablets */
    }
    
    .projects-filters {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .projects-container {
        padding: 0 1.25rem;
    }
    
    .project-card {
        flex: 0 0 calc((100% - (1 * 1rem)) / 2); /* 2 visible on mobile portrait */
        min-width: 220px;
    }
    
    .projects-slider {
        gap: 1rem;
    }
    
    .slider-arrow {
        display: none !important; /* Hide arrows on mobile for native swiping layout */
    }
    
    .projects-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .project-card {
        flex: 0 0 100%; /* 1 card visible fully on small mobile screen */
    }
}

/* Our Process & Contact Section Styles */
.process-section {
    background-color: var(--color-bg-deep); /* Midnight background */
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.process-content-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr; /* Left navy side is wider, right image side is narrower */
    width: 100%;
    min-height: 500px; /* Reduced min-height from 700px to make it compact */
}

.process-left-pane {
    background: linear-gradient(135deg, #020613 0%, #030c24 100%);
    padding: 4.5rem 3rem 4.5rem 5.5rem; /* Reduced vertical padding from 8rem to 4.5rem */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-text-flow {
    margin-bottom: 2.2rem; /* Reduced from 3.5rem */
}

.process-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 2.1rem; /* Reduced from 2.8rem */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: 0.5rem;
}

.process-underline {
    width: 50px;
    height: 3px;
    background-color: var(--color-accent-blue);
    margin-top: 1rem;
    border-radius: 2px;
    box-shadow: 0 0 6px var(--color-accent-blue);
}

.process-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr; /* Left columns of steps, right form stack (giving more space to the form) */
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/* Steps Flow */
.process-steps-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
}

.process-step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.step-icon-wrapper {
    width: 44px; /* Reduced from 54px */
    height: 44px; /* Reduced from 54px */
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem; /* Reduced from 1.2rem */
    box-shadow: 0 4px 15px rgba(12, 85, 234, 0.35);
    transition: var(--transition-smooth);
}

.process-step-item:hover .step-icon-wrapper {
    transform: scale(1.08);
    background-color: var(--color-primary-hover);
    box-shadow: 0 6px 20px rgba(12, 85, 234, 0.5);
}

.step-icon {
    width: 18px; /* Reduced from 20px */
    height: 18px; /* Reduced from 20px */
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.75rem; /* Reduced from 0.85rem */
    font-weight: 700;
    color: var(--color-accent-blue);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.95rem; /* Reduced from 1.15rem */
    font-weight: 700;
    color: #ffffff;
}

.step-desc {
    font-size: 0.72rem; /* Reduced from 0.8rem */
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* Arrow aligner using vertical alignment matching circles height */
.step-arrow-wrapper {
    display: flex;
    align-items: center;
    height: 44px; /* Matches new height of the icon circles */
    color: var(--color-text-muted);
    opacity: 0.35;
    margin-bottom: auto;
}

.step-arrow {
    width: 28px; /* Reduced from 36px */
    height: 12px;
}

/* Contact Form Box styling */
.process-form-container {
    background: rgba(5, 12, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem; /* Reduced padding from 1.8rem to make it more compact */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem; /* Reduced from 1rem */
    margin-bottom: 1rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-input {
    width: 100%;
    background-color: rgba(2, 6, 19, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.65rem 0.9rem; /* Reduced from 0.9rem 1.1rem */
    font-family: var(--font-body);
    font-size: 0.82rem; /* Reduced from 0.9rem */
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.25);
    background-color: rgba(2, 6, 19, 0.8);
}

/* Select Group adjustments */
.select-group {
    position: relative;
}

.form-select {
    width: 100%;
    background-color: rgba(2, 6, 19, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.65rem 0.9rem; /* Reduced from 0.9rem 1.1rem */
    font-family: var(--font-body);
    font-size: 0.82rem; /* Reduced from 0.9rem */
    color: #ffffff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.25);
    background-color: rgba(2, 6, 19, 0.8);
}

/* Style selected/disabled option placeholder color */
.form-select:invalid,
.form-select option[value=""] {
    color: rgba(255, 255, 255, 0.4);
}

.form-select option {
    background-color: #050c1f;
    color: #ffffff;
}

.select-chevron {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.form-textarea {
    resize: none;
    min-height: 75px; /* Reduced from 100px */
}

.btn-submit {
    border: none;
    box-shadow: 0 4px 15px rgba(12, 85, 234, 0.25);
    padding: 0.75rem 1.5rem; /* Reduced padding to look compact */
}

/* Right Pane showcasing our.png Cover */
.process-right-pane {
    background-image: url('our.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.process-right-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 6, 19, 0.25) 0%, rgba(2, 6, 19, 0) 100%);
    pointer-events: none;
}

/* Process Section Responsiveness */
@media (max-width: 1440px) {
    .process-left-pane {
        padding: 8rem 2.5rem 8rem 2.5rem; /* Standardize left padding and save horizontal space */
    }
}

@media (max-width: 1300px) {
    .process-columns-grid {
        grid-template-columns: 1fr; /* Stack steps and form vertically at 1300px breakpoint */
        gap: 3rem;
    }
    
    .process-steps-container {
        justify-content: space-between;
    }
    
    .arrow-to-form {
        display: none !important; /* Hide last arrow since form is now below */
    }
}

@media (max-width: 1024px) {
    .process-content-wrapper {
        grid-template-columns: 1fr; /* Stack navy pane and image panel vertically */
        min-height: auto;
    }
    
    .process-right-pane {
        height: 400px; /* Give image panel a fixed height when stacked */
    }
    
    .process-left-pane {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .process-steps-container {
        flex-direction: column; /* Stack steps vertically on mobile screen */
        align-items: flex-start;
        gap: 2rem;
    }
    
    .step-arrow-wrapper {
        display: none !important; /* Hide arrows in vertical flow */
    }
    
    .process-step-item {
        max-width: 100%;
        display: flex;
        flex-direction: row; /* Horizontal layout for individual step on mobile */
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr; /* Stack form inputs vertically */
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .process-form-container {
        padding: 1.5rem;
    }
}

/* Custom Alert Notification Styles */
.custom-alert {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(5, 12, 31, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 8px;
    padding: 1.1rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15), 0 0 15px rgba(0, 102, 255, 0.1);
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    max-width: 90%;
    text-align: center;
}

.custom-alert.active {
    bottom: 2rem;
    opacity: 1;
    pointer-events: auto;
}

.custom-alert.alert-error {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
}

.alert-message {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Dedicated Contact Section
   ========================================================================== */
/* ==========================================================================
   Dedicated Contact Section
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-deep);
    /* Gradient overlay from dark navy to transparent, overlaid on hero image for house texture */
    background-image: linear-gradient(90deg, 
        rgba(2, 6, 19, 1) 0%, 
        rgba(2, 6, 19, 0.95) 45%, 
        rgba(2, 6, 19, 0.75) 75%, 
        rgba(2, 6, 19, 0.2) 100%), 
        url('hero.png');
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

/* Glowing background blobs inside contact section */
.contact-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    mix-blend-mode: screen;
}

.contact-glow-orb.orb-left {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--color-accent-blue) 0%, rgba(0, 102, 255, 0) 70%);
    top: 5%;
    left: -150px;
    animation: contact-pulse-left 10s infinite alternate ease-in-out;
}

.contact-glow-orb.orb-right {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d2ff 0%, rgba(12, 85, 234, 0) 70%);
    bottom: -10%;
    right: -100px;
    animation: contact-pulse-right 12s infinite alternate-reverse ease-in-out;
}

@keyframes contact-pulse-left {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }
    100% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.16;
    }
}

@keyframes contact-pulse-right {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }
    100% {
        transform: translate(-30px, -40px) scale(1.15);
        opacity: 0.2;
    }
}

.contact-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 6rem;
    align-items: center;
}

/* Left Column: Info */
.contact-info-column {
    display: flex;
    flex-direction: column;
}

.contact-section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.contact-section-desc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 3.5rem;
}

.contact-section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Contact Details List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover {
    transform: translateX(8px);
}

.detail-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.contact-detail-item:hover .detail-icon-circle {
    background-color: rgba(12, 85, 234, 0.15);
    color: #ffffff;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.35);
    transform: scale(1.05);
}

.contact-svg-icon {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.detail-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    transition: var(--transition-fast);
}

a.detail-value:hover {
    color: var(--color-accent-blue);
}

.detail-subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Right Column: Dark Blue Glassmorphic Form Card */
.contact-form-column {
    background: rgba(5, 12, 31, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(12, 85, 234, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Internal Glow Effect for Form Card */
.contact-form-column::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-column .process-form-container {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
    z-index: 1;
}

/* Contact Form Specific Styling */
.contact-form-column .form-input,
.contact-form-column .form-select {
    background-color: rgba(2, 6, 19, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.9rem 1.1rem;
    border-radius: 6px;
    font-family: var(--font-body);
}

.contact-form-column .form-input:focus,
.contact-form-column .form-select:focus {
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.25);
    background-color: rgba(2, 6, 19, 0.7);
}

.contact-form-column .form-textarea {
    min-height: 110px;
}

.contact-form-column .btn-submit {
    padding: 1.1rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.06em;
    background-color: var(--color-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(12, 85, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.contact-form-column .btn-submit:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 8px 25px rgba(12, 85, 234, 0.5);
    transform: translateY(-2px);
}

/* Contact Section Responsiveness */
@media (max-width: 1200px) {
    .contact-section {
        /* Align background image to center on stacked viewports */
        background-image: linear-gradient(180deg, 
            rgba(2, 6, 19, 1) 0%, 
            rgba(2, 6, 19, 0.95) 50%, 
            rgba(2, 6, 19, 0.85) 100%), 
            url('hero.png');
        background-position: center;
    }
    
    .contact-container {
        padding: 0 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .contact-info-column {
        align-items: center;
        text-align: center;
    }
    
    .contact-details-list {
        align-items: flex-start;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-detail-item {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0;
    }
    
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .contact-section-title {
        font-size: 2.5rem;
    }
    
    .contact-form-column {
        padding: 2rem;
    }
    
    .contact-section-desc-wrapper {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section-title {
        font-size: 2rem;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
    
    .contact-form-column {
        padding: 1.75rem;
    }
}

/* ==========================================================================
   Dedicated Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-grid {
    display: grid;
    /* Optimized column allocation to prevent text wrapping and align sections */
    grid-template-columns: 2.9fr 1.1fr 2.7fr 2.1fr;
    gap: 0;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    padding: 0 2rem; /* Consistent balanced paddings */
}

/* Add vertical borders to columns to match the layout mockup */
.footer-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.05); /* Soft vertical lines */
}

/* Remove boundary column margins to align precisely with layout container margins */
.footer-col:first-child {
    padding-left: 0;
    padding-right: 2.5rem;
}

.footer-col:last-child {
    padding-right: 0;
    padding-left: 2.5rem;
}

/* Column 1: Brand Info styling */
.brand-col {
    display: flex;
    flex-direction: column;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo-link {
    display: inline-block;
    flex-shrink: 0;
}

.footer-logo {
    height: 108px; /* Clean aligned height, increased by 80% (60px * 1.8) */
    width: auto;
    object-fit: contain;
}

.brand-slogan {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    max-width: 280px;
    margin: 0;
}

/* Social Links Icons */
.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.social-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.social-svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Social icons custom brand hover states */
.social-icon-circle[aria-label="Facebook"]:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
    transform: translateY(-3px);
}

.social-icon-circle[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
    transform: translateY(-3px);
}

.social-icon-circle[aria-label="TikTok"]:hover {
    background-color: #000000;
    border-color: #00f2fe;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    transform: translateY(-3px);
}

.social-icon-circle:hover .social-svg {
    transform: scale(1.08);
}

/* Link Columns Styling (Column 2 & 3) */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin-bottom: 1.8rem; /* Consistent vertical gap to keep headings aligned */
    text-transform: uppercase;
    opacity: 0.95;
    white-space: nowrap; /* Prevent heading wrap */
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem; /* Generous gap between different links to prevent congested lines */
}

.footer-links-list li {
    line-height: 1.35; /* Tight line height for individual wrapped elements */
}

.footer-links-list a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Column 3 details: Service lists side-by-side */
.services-sub-lists {
    display: flex;
    gap: 2rem;
}

.services-sub-lists .footer-links-list {
    flex: 1;
}

/* Column 4: Contact details */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.95rem; /* Matches link list gap exactly for horizontal line-by-line alignment */
}

.footer-contact-item {
    display: flex;
    align-items: center; /* Center the icon with contact text */
    gap: 0.75rem;
    min-height: 1.35rem; /* Matches link lines box height */
}

.footer-detail-icon {
    color: var(--color-accent-blue);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.footer-detail-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    transition: var(--transition-fast);
}

a.footer-detail-text:hover {
    color: #ffffff;
}

/* Bottom Copyright styling */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.copyright-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Footer Responsiveness
   ========================================================================== */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
    
    .footer-col {
        padding: 0 1rem !important; /* Keep slight spacing in grid mode */
        border: none !important;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .brand-col {
        align-items: center;
        text-align: center;
        padding-right: 0 !important;
    }
    
    .brand-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        height: 80px; /* Scaled down slightly on mobile to save vertical space */
    }
    
    .social-links {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .brand-slogan {
        max-width: 100%;
        font-size: 0.8rem;
    }
    
    /* Display Quick Links in 2 columns on mobile to save height */
    .links-col .footer-links-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem 1rem;
    }
    
    /* Keep services side-by-side in 2 columns on mobile instead of stacking vertically */
    .services-sub-lists {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .services-sub-lists .footer-links-list {
        gap: 0.6rem;
    }
    
    .footer-contact-details {
        gap: 0.6rem;
    }
    
    .footer-col-title {
        margin-bottom: 0.8rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1rem;
    }
}
