﻿/*!
Theme Name: Devlogic Technologies
Theme URI: https://devlogictechnologies.in
Author: Devlogic Technologies
Author URI: https://devlogictechnologies.in
Description: Premium WordPress Theme for Devlogic Technologies - IT Software Development, AI Solutions & Consulting
Version: 3.0.0
Requires at least: 5.9
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devlogic
Tags: business, custom-logo, custom-menu, featured-images, theme-options, translation-ready, responsive-layout
*/

:root {
    --primary-dark: #0B2447;
    --primary-mid: #19376D;
    --primary-light: #2563EB;
    --accent-teal: #0891B2;
    --accent-purple: #6366F1;
    --accent-pink: #EC4899;
    --pale-blue: #E2E8F0;
    --bg-blue: #F1F5F9;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-mid: #475569;
    --text-light: #64748B;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --grad-primary: linear-gradient(135deg, #0B2447 0%, #19376D 50%, #2563EB 100%);
    --grad-accent: linear-gradient(135deg, #2563EB 0%, #6366F1 100%);
    --grad-warm: linear-gradient(135deg, #FF6B6B 0%, #FFB347 100%);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html {
    font-size: 17px;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-lg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pale-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    animation: slideInDown 0.6s ease-out;
    text-decoration: none;
}

.logo svg {
    height: 44px;
    width: auto;
    max-width: 44px;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s;
    flex-shrink: 0;
}

.logo .site-logo-img,
.logo .custom-logo {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: cover;
    object-position: top center;
    clip-path: inset(0 0 18% 0);
    filter: none;
    transition: filter 0.3s;
    flex-shrink: 0;
}

/* WordPress custom-logo-link wrapper from the_custom_logo() */
.logo .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo .custom-logo-link .custom-logo {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: cover;
    object-position: top center;
    clip-path: inset(0 0 18% 0);
}

/* Hide text when logo image is present */
.logo .site-logo-img ~ .logo-text,
.logo .custom-logo-link ~ .logo-text {
    display: none;
}

.logo:hover svg,
.logo:hover .site-logo-img,
.logo:hover .custom-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-dark);
    -webkit-text-fill-color: var(--primary-dark);
    letter-spacing: -0.3px;
    line-height: 1.15;
    transition: all 0.3s;
    white-space: nowrap;
}

.logo:hover .logo-text {
    color: var(--primary-mid);
    -webkit-text-fill-color: var(--primary-mid);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    animation: slideInDown 0.6s ease-out 0.1s backwards;
}

.nav-links a {
    color: var(--text-mid);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    animation: slideInDown 0.6s ease-out 0.2s backwards;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 0;
    border-bottom: 1px solid var(--pale-blue);
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-light);
    transform: translateX(10px);
}

.mobile-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0B2447 0%, #19376D 50%, #2563EB 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    text-align: center;
    animation: slideInUp 1s ease-out;
    min-height: auto;
    overflow: visible;
}

.hero-badge {
    display: inline-block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    max-width: 85vw;
    word-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
    padding: 0 0.5rem;
}

.hero-content h1 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 4vw, 1.15rem);
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    padding: 0 0.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 1s ease-out 0.2s backwards;
    padding: 0 0.5rem;
}

.btn-primary {
    padding: 1.1rem 2.8rem;
    background: var(--white);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl);
    background: #F1F5F9;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-outline {
    padding: 1.1rem 2.8rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* ========== STATS SECTION ========== */
.stats-section {
    position: relative;
    background: var(--white);
    padding: 4rem 2rem;
    border-top: 1px solid var(--pale-blue);
    border-bottom: 1px solid var(--pale-blue);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

/* ========== TOP APPEAL SECTION ========== */
.top-appeal-section {
    background: var(--light-bg);
    padding: 3rem 2rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--pale-blue);
}

.appeal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.appeal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.appeal-box {
    background: var(--white);
    border: 1px solid var(--pale-blue);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.appeal-box:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.appeal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.appeal-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.appeal-box p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .appeal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .appeal-box {
        padding: 1.2rem;
    }

    .appeal-icon {
        font-size: 2rem;
    }

    .appeal-box h3 {
        font-size: 1rem;
    }
}

/* ========== GLOBAL APPEAL SECTION ========== */
.global-appeal {
    background: var(--white);
    padding: 5rem 2rem;
    color: var(--text-dark);
}

.global-container {
    max-width: 1200px;
    margin: 0 auto;
}

.global-header {
    text-align: center;
    margin-bottom: 4rem;
}

.global-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    -webkit-text-fill-color: var(--primary-dark);
    animation: slideInDown 0.8s ease-out;
}

.global-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.global-card {
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.global-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.global-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.global-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.global-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.flag-display {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.flag-display img {
    width: 40px;
    height: 26px;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.flag-display img:hover {
    transform: scale(1.2) rotate(-5deg);
}

.language-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1rem;
}

.lang-badge {
    background: var(--grad-accent);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timezones {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tz-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
}

.delivery-stat {
    margin-top: 1rem;
}

.delivery-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-teal);
    display: block;
}

.delivery-text {
    font-size: 1rem;
    color: var(--text-light);
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}

.cert-badge {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.savings-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-block;
}

.global-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.global-cta h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.global-cta p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-mid);
}

.btn-primary-global {
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary-global:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .global-header h2 {
        font-size: 1.8rem;
    }

    .global-header p {
        font-size: 1.05rem;
    }

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

    .global-cta {
        padding: 2rem;
    }

    .global-cta h3 {
        font-size: 1.3rem;
    }
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: var(--text-mid);
    font-size: clamp(0.9rem, 3vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== TRUST SECTION ========== */
.trust-section {
    position: relative;
    background: var(--light-bg);
    padding: 5rem 2rem;
    overflow: hidden;
    border-top: 1px solid var(--pale-blue);
    border-bottom: 1px solid var(--pale-blue);
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.trust-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
    cursor: pointer;
    user-select: none;
}

.expandable-header {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.expandable-header:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.header-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.trust-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
    min-width: 20px;
}

.trust-section.expanded .trust-arrow {
    transform: rotate(180deg);
}

.trust-header h2 {
    color: var(--primary-dark);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0;
    -webkit-text-fill-color: var(--primary-dark);
}

.trust-content {
    display: none;
    animation: slideDown 0.3s ease-out;
    margin-top: 2rem;
}

.trust-section.expanded .trust-content {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Activity Feed */
.activity-feed {
    background: var(--white);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.activity-title {
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.activity-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary-light);
    transition: all 0.3s;
    animation: slideInUp 0.5s ease-out;
}

.activity-item:hover {
    background: var(--bg-blue);
    transform: translateX(10px);
}

.activity-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: block;
}

.activity-time {
    color: var(--text-mid);
    font-size: 0.95rem;
    white-space: nowrap;
    font-weight: 500;
    display: block;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.trust-badge:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.badge-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-text {
    flex: 1;
}

.badge-title {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    letter-spacing: 0.3px;
}

.badge-desc {
    color: var(--text-mid);
    font-size: 1rem;
    font-weight: 500;
}

/* Visitor Counter */
.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.counter-icon {
    font-size: 2.5rem;
}

.counter-text {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#visitorCount {
    color: var(--primary-light);
    font-weight: 900;
    font-size: 1.5rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.section-header h2 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 500;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    transition: all 0.6s;
    opacity: 0;
}

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

.service-card:hover::after {
    opacity: 1;
    animation: orbitSpin 3s linear infinite;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    background: var(--white);
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--grad-accent);
    border-color: var(--primary-light);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s;
    line-height: 1.3;
}

.service-card:hover h3 {
    color: var(--primary-mid);
}

.service-card p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-teal);
    border-radius: 8px;
    background: transparent;
    text-align: center;
    width: 100%;
    cursor: pointer;
}

.service-cta:hover {
    background: var(--accent-teal);
    color: var(--text-dark);
    transform: translateX(5px);
}

/* ========== ACCORDION STYLES ========== */
.accordion-card {
    padding: 0 !important;
    overflow: visible !important;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    cursor: pointer;
    user-select: none;
}

.service-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-title-group h3 {
    margin: 0 !important;
}

.accordion-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: right;
}

.accordion-card.active .accordion-arrow {
    transform: rotate(180deg);
}

.service-content {
    display: none;
    border-top: 1px solid var(--pale-blue);
}

.accordion-card.active .service-content {
    display: block;
}

.accordion-body {
    padding: 0 2rem 1.5rem 6.5rem;
}

.service-section {
    margin-bottom: 1.5rem;
}

.service-section h4 {
    color: var(--primary-mid);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.accordion-card .service-cta {
    margin: 1.5rem 2rem 2rem 6.5rem;
}

/* ========== TECHNOLOGIES SECTION ========== */
.tech-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.tech-header {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.tech-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.tech-header h2 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 2rem;
    padding: 0.85rem 2.2rem;
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.tech-toggle-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.tech-toggle-btn .arrow {
    transition: transform 0.4s;
    display: inline-block;
}

.tech-toggle-btn .arrow.rotated {
    transform: rotate(180deg);
}

.tech-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-body.open {
    max-height: 6000px;
}

.tech-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tech-group {
    margin-bottom: 3rem;
}

.tech-group-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-mid);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--pale-blue);
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: 50px;
    padding: 0.7rem 1.3rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: all 0.3s;
}

.tech-pill:hover {
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========== INDUSTRIES SECTION ========== */
.industries-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.industry-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-mid);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.industry-card ul {
    list-style: none;
}

.industry-card li {
    color: var(--text-light);
    font-size: 1.05rem;
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    transition: all 0.3s;
}

.industry-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-size: 1.3rem;
    font-weight: 700;
}

.industry-card li:hover {
    color: var(--primary-mid);
    transform: translateX(5px);
}

/* ========== PORTFOLIO SECTION ========== */
.portfolio-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--pale-blue);
    background: transparent;
    color: var(--text-mid);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.04);
}

.filter-btn.active {
    background: var(--grad-accent);
    border-color: transparent;
    color: white;
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-card {
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card-header {
    padding: 1.5rem 1.5rem 1rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.portfolio-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.portfolio-client {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.portfolio-desc {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-results {
    padding: 1rem 1.5rem;
    background: rgba(37, 99, 235, 0.03);
    border-top: 1px solid var(--pale-blue);
}

.portfolio-results h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-results ul {
    list-style: none;
    padding: 0;
}

.portfolio-results li {
    color: var(--text-mid);
    padding: 0.3rem 0;
    font-size: 1rem;
    padding-left: 1.2rem;
    position: relative;
}

.portfolio-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.portfolio-tech {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tech-pill {
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-purple);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

/* ========== SECURITY SECTION ========== */
.security-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.security-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
}

.security-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
}

.security-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--grad-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.security-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.security-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== PROCESS SECTION ========== */
.process-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-light), var(--accent-purple));
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) .step-box {
    grid-column: 1;
}

.process-step:nth-child(even) .step-num {
    grid-column: 2;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--grad-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    justify-self: center;
    animation: float 3s ease-in-out infinite;
}

.step-box {
    background: var(--white);
    border: 2px solid var(--pale-blue);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
}

.step-box:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.step-box h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-mid);
    margin-bottom: 0.8rem;
}

.step-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ========== REVIEWS CAROUSEL SECTION ========== */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
    position: relative;
}

/* ========== CLUTCH REVIEWS SECTION ========== */
.clutch-review_section {
    padding: 6rem 2rem;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.clutch-reviews_container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Syne', sans-serif;
}

.reviews-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.reviews-scroll-container {
    position: relative;
    margin-bottom: 2rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    scroll-padding: 1rem;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.clutch-review_item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--pale-blue);
    padding: 1.2rem;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.clutch-review_item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.clutch-review_quote {
    margin-bottom: 1.5rem;
}

.clutch-review_quote svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.clutch-review_review {
    flex: 1;
    margin-bottom: 1.5rem;
}

.clutch-review_title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.clutch-review_text {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.clutch-review_backquote {
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.clutch-review_backquote svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

.clutch-review_company {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.clutch-review_position {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.clutch-review_location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.clutch-review_location img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.clutch-review_rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pale-blue);
}

.clutch-review_number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.clutch-review_rate svg {
    width: 18px;
    height: 18px;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--pale-blue);
    background: var(--white);
    color: var(--primary-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.contact-section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.contact-section-header h2 span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

/* Office Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.office-card {
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: 16px;
    padding: 1.3rem;
    transition: all 0.3s;
}

.office-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.office-flag {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.office-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-mid);
    margin-bottom: 0.4rem;
}

.office-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Contact Detail Row (email + response time) */
.contact-detail-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border: 1px solid var(--pale-blue);
    border-radius: 14px;
    transition: all 0.3s;
}

.contact-detail-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-detail-card h4 {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem;
}

.contact-detail-card p,
.contact-detail-card a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
}

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

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--pale-blue);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.form-tabs {
    display: flex;
    border-bottom: 1px solid var(--pale-blue);
    background: var(--light-bg);
}

.form-tab {
    flex: 1;
    padding: 1.2rem;
    background: none;
    border: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
}

.form-tab:hover {
    color: var(--text-dark);
}

.form-tab.active {
    color: var(--white);
    background: var(--grad-accent);
}

.form-body {
    padding: 2rem;
}

.form-content {
    display: none;
    animation: slideInUp 0.5s ease-out;
}

.form-content.active {
    display: block;
}

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

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

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--pale-blue);
    background: var(--light-bg);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: all 0.3s;
}

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

.form-group select option {
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    min-height: 48px;
    margin-top: 1rem;
    display: block;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.schedule-note {
    background: rgba(37, 99, 235, 0.05);
    border-left: 3px solid var(--primary-light);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
    animation: slideInUp 0.4s ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #0B2447 0%, #19376D 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 2rem 2rem;
    border-top: none;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-col p,
.footer-col li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}

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

.footer-col li {
    margin-bottom: 0.6rem;
    transition: all 0.3s;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg,
.footer-logo .custom-logo {
    height: 40px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
    filter: brightness(1.2);
}

.footer-logo .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
    border-color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.88rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo svg,
    .logo .site-logo-img,
    .logo .custom-logo,
    .logo .custom-logo-link .custom-logo {
        height: 38px;
        max-width: 38px;
    }
}

@media (max-width: 1024px) {
    .services-container,
    .industries-container,
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        grid-template-columns: 1fr !important;
    }
    
    .step-num {
        grid-column: auto !important;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-content {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 0.85rem;
        margin-bottom: 0.8rem;
        max-width: 90vw;
        letter-spacing: 0.2px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-btns {
        gap: 0.8rem;
        padding: 0;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 1.05rem;
        min-height: 48px;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Trust Section */
    .trust-section {
        padding: 3rem 1.5rem;
    }

    .trust-header h2 {
        font-size: 1.8rem;
    }

    .activity-feed {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .activity-item {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .trust-badge {
        padding: 1.5rem;
        gap: 1rem;
    }

    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .badge-title {
        font-size: 1.05rem;
    }

    .badge-desc {
        font-size: 0.9rem;
    }

    .visitor-counter {
        padding: 1.5rem;
        gap: 1rem;
    }

    .counter-icon {
        font-size: 2rem;
    }

    .counter-text {
        font-size: 1rem;
    }

    #visitorCount {
        font-size: 1.2rem;
    }
    
    .services-container,
    .industries-container,
    .testimonials-container,
    .security-container {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0.8rem 1rem;
    }
    
    .logo svg,
    .logo .site-logo-img,
    .logo .custom-logo,
    .logo .custom-logo-link .custom-logo {
        height: 32px;
        max-width: 32px;
    }
    
    .logo-text {
        font-size: 1.05rem;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1.5rem 0.75rem 1rem 0.75rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.45rem 0.7rem;
        margin-bottom: 0.6rem;
        max-width: 85vw;
        letter-spacing: 0px;
        line-height: 1.3;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .hero-btns {
        gap: 0.6rem;
        padding: 0;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-height: 48px;
        margin: 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .stat-item {
        padding: 1rem 0.8rem;
    }

    .stat-number {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        letter-spacing: 0.5px;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 2rem 1rem;
    }

    .trust-header h2 {
        font-size: 1.4rem;
    }

    .activity-feed {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .activity-item {
        padding: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .activity-text {
        font-size: 0.95rem;
    }

    .activity-time {
        font-size: 0.85rem;
        width: 100%;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .trust-badge {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .badge-title {
        font-size: 1rem;
    }

    .badge-desc {
        font-size: 0.85rem;
    }

    .visitor-counter {
        padding: 1.2rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }

    .counter-icon {
        font-size: 1.8rem;
    }

    .counter-text {
        font-size: 1rem;
    }

    #visitorCount {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .industry-card,
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .form-body {
        padding: 1.2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-detail-row {
        grid-template-columns: 1fr;
    }
    
    .contact-section-header h2 {
        font-size: 1.5rem;
    }
    
    .office-card {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
