/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Variables / Design Tokens ===== */
:root {
    /* Primary Colors */
    --navy-900: #0a1128;
    --navy-800: #0f1a36;
    --navy-700: #142244;
    --navy-600: #1a2d5a;
    --navy-500: #213970;
    --navy-400: #2e4a8a;
    --navy-300: #4a6aaf;
    --navy-200: #7a94cc;
    --navy-100: #b3c2e0;
    --navy-50: #e6ebf5;

    /* Accent Colors - Orange */
    --orange-600: #c4500a;
    --orange-500: #e8611a;
    --orange-400: #f47b2b;
    --orange-300: #f7943d;
    --orange-200: #fab06a;
    --orange-100: #fdd4a7;
    --orange-50: #fef0e0;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Semantic */
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --info: #3498db;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1320px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 17, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 17, 40, 0.12);
    --shadow-lg: 0 8px 40px rgba(10, 17, 40, 0.16);
    --shadow-xl: 0 16px 60px rgba(10, 17, 40, 0.2);
    --shadow-orange: 0 8px 30px rgba(232, 97, 26, 0.3);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

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

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

ul, ol { list-style: none; }

/* ===== Utility Classes ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange-500);
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-500);
}

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

.section-title span {
    color: var(--orange-500);
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: var(--transition-base);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
}

.btn-primary::before {
    background: var(--navy-900);
}

.btn-primary:hover {
    border-color: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

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

.btn-secondary::before {
    background: var(--orange-500);
}

.btn-secondary:hover {
    border-color: var(--orange-500);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline::before {
    background: var(--orange-500);
}

.btn-outline:hover {
    border-color: var(--orange-500);
    color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}

.btn-outline-dark::before {
    background: var(--navy-900);
}

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

.btn i {
    font-size: 1rem;
    transition: var(--transition-base);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--navy-900);
    color: var(--gray-300);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-left a,
.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.85rem;
}

.top-bar-left a:hover {
    color: var(--orange-400);
}

.top-bar-left i {
    color: var(--orange-500);
    font-size: 0.9rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-300);
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.top-bar-social a:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Header / Navigation ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 90px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text .logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 28px 18px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--orange-500);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--orange-500);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 100;
}

.nav-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.dropdown-menu a:hover {
    color: var(--orange-500);
    padding-left: 28px;
    background: var(--gray-50);
}

.dropdown-menu a i {
    font-size: 0.75rem;
    color: var(--orange-500);
    opacity: 0;
    transition: var(--transition-base);
}

.dropdown-menu a:hover i {
    opacity: 1;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-50);
    border-radius: var(--radius-full);
    color: var(--orange-500);
    font-size: 1.1rem;
}

.header-phone-text {
    display: flex;
    flex-direction: column;
}

.header-phone-text span {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-phone-text a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-900);
}

.header-phone-text a:hover {
    color: var(--orange-500);
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--navy-900);
    border-radius: 3px;
    transition: var(--transition-base);
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.6) 50%, rgba(10, 17, 40, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0 160px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 97, 26, 0.15);
    border: 1px solid rgba(232, 97, 26, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--orange-400);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-label i {
    font-size: 0.7rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--orange-500);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-500);
    opacity: 0.4;
}

.hero-desc {
    color: var(--gray-300);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
    padding: 30px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat:hover {
    background: rgba(232, 97, 26, 0.1);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-500);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== Floating Shape Decorations ===== */
.shape-float {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.06;
    animation: float 6s ease-in-out infinite;
}

.shape-float-1 {
    width: 300px;
    height: 300px;
    background: var(--orange-500);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-float-2 {
    width: 200px;
    height: 200px;
    background: var(--orange-400);
    bottom: 200px;
    right: 10%;
    animation-delay: 2s;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    group: true;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.6), transparent);
}

.service-card-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-500);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--navy-900);
    transform: rotate(10deg);
}

.service-card-body {
    padding: 35px 25px 25px;
}

.service-card-body h4 {
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.service-card:hover .service-card-body h4 {
    color: var(--orange-500);
}

.service-card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-link i {
    transition: var(--transition-base);
}

.service-card-link:hover i {
    transform: translateX(5px);
}

/* ===== About Section ===== */
.about-section {
    background: var(--gray-50);
}

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

.about-image {
    position: relative;
}

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

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--orange-500);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-content .section-label::before {
    display: none;
}

.about-content .section-header {
    text-align: left;
    margin: 0 0 30px;
    max-width: none;
}

.about-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-50);
    border-radius: var(--radius-full);
    color: var(--orange-500);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.about-feature span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy-900);
    font-size: 0.95rem;
}

/* ===== Why Choose Us ===== */
.why-section {
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.why-section .section-label {
    color: var(--orange-400);
}

.why-section .section-title {
    color: var(--white);
}

.why-section .section-desc {
    color: var(--gray-400);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: var(--transition-base);
}

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

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(232, 97, 26, 0.3);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.12);
    border-radius: var(--radius-lg);
    color: var(--orange-500);
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.why-card:hover .why-card-icon {
    background: var(--orange-500);
    color: var(--white);
    transform: scale(1.05);
}

.why-card h4 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA / Quote Section ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== Tracking Section ===== */
.tracking-section {
    background: var(--gray-50);
}

.tracking-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.tracking-box h3 {
    margin-bottom: 10px;
}

.tracking-box p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.tracking-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
    outline: none;
}

.tracking-form input:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(232, 97, 26, 0.1);
}

.tracking-form .btn {
    flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: var(--transition-slow);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--orange-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--orange-200);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--warning);
    font-size: 0.85rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h5 {
    color: var(--navy-900);
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== Counter / Stats Section ===== */
.counter-section {
    background: var(--navy-800);
    padding: 80px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 97, 26, 0.12);
    border-radius: var(--radius-lg);
    color: var(--orange-500);
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== Blog Section ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

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

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-500);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    line-height: 1.1;
}

.blog-card-date .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.blog-card-date .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--orange-500);
}

.blog-card-body h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    line-height: 1.4;
}

.blog-card-body h4 a:hover {
    color: var(--orange-500);
}

.blog-card-body p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Partners / Clients ===== */
.partners-section {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: var(--transition-base);
    cursor: default;
}

.partner-logo:hover {
    opacity: 1;
    color: var(--navy-900);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-900);
    color: var(--gray-400);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .logo img {
    height: 80px;
    filter: brightness(10);
}

.footer-about p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--orange-500);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--orange-500);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--orange-400);
    padding-left: 6px;
}

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

.footer-contact i {
    color: var(--orange-500);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-inner a {
    color: var(--orange-400);
}

.footer-bottom-inner a:hover {
    color: var(--orange-300);
}

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

.footer-bottom-links a {
    color: var(--gray-400);
}

.footer-bottom-links a:hover {
    color: var(--orange-400);
}

/* ===== Page Hero / Breadcrumb ===== */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--navy-900);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95), rgba(10, 17, 40, 0.8));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    font-size: 0.95rem;
}

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

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

.breadcrumb span {
    color: var(--orange-500);
    font-weight: 600;
}

.breadcrumb i {
    color: var(--gray-500);
    font-size: 0.7rem;
}

/* ===== About Page Specific ===== */
.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-detail-content p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--orange-500);
    transition: var(--transition-base);
}

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

.mv-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-50);
    border-radius: var(--radius-lg);
    color: var(--orange-500);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.mv-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    text-align: center;
}

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

.team-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy-100), var(--navy-200));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-img .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.team-card-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.8), transparent);
    transform: translateY(100%);
    transition: var(--transition-base);
}

.team-card:hover .team-card-social {
    transform: translateY(0);
}

.team-card-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--navy-900);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.team-card-social a:hover {
    background: var(--orange-500);
    color: var(--white);
}

.team-card-body {
    padding: 25px 20px;
}

.team-card-body h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-card-body span {
    color: var(--orange-500);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== Services Page ===== */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.services-detail-grid:nth-child(even) {
    direction: rtl;
}

.services-detail-grid:nth-child(even) > * {
    direction: ltr;
}

.service-detail-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content .section-label {
    justify-content: flex-start;
}

.service-detail-content .section-label::before {
    display: none;
}

.service-detail-content h3 {
    margin-bottom: 16px;
    font-size: 2rem;
}

.service-detail-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.service-features-list li i {
    color: var(--orange-500);
    font-size: 0.85rem;
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--orange-200);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-50);
    border-radius: var(--radius-lg);
    color: var(--orange-500);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--orange-500);
    color: var(--white);
}

.contact-info-content h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--gray-600);
    font-size: 0.95rem;
    display: block;
}

.contact-info-content a:hover {
    color: var(--orange-500);
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

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

.contact-form-box > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition-base);
    outline: none;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 4px rgba(232, 97, 26, 0.1);
}

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

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

/* Map */
.map-section {
    height: 450px;
    position: relative;
    background: var(--gray-200);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Quote Page ===== */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.quote-info {
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: var(--white);
}

.quote-info h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.quote-info p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-info-list {
    margin-bottom: 30px;
}

.quote-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-300);
    font-size: 0.95rem;
}

.quote-info-list li i {
    color: var(--orange-500);
    font-size: 1rem;
}

.quote-form-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.quote-form-box h3 {
    margin-bottom: 8px;
}

.quote-form-box > p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* ===== Tracking Page ===== */
.tracking-detail {
    max-width: 900px;
    margin: 0 auto;
}

.tracking-result {
    display: none;
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.tracking-result.active {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

.tracking-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
}

.tracking-status-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-200);
    transform: translateY(-50%);
}

.tracking-status-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 75%;
    height: 4px;
    background: var(--orange-500);
    transform: translateY(-50%);
}

.tracking-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tracking-step-dot {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.tracking-step.completed .tracking-step-dot {
    background: var(--orange-500);
}

.tracking-step.current .tracking-step-dot {
    background: var(--orange-500);
    box-shadow: 0 0 0 6px rgba(232, 97, 26, 0.2);
    animation: pulse 2s infinite;
}

.tracking-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

.tracking-detail-item {
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.tracking-detail-item label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tracking-detail-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy-900);
    font-size: 1rem;
}

/* ===== Process Steps ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--orange-300) 0px,
        var(--orange-300) 8px,
        transparent 8px,
        transparent 16px
    );
}

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

.process-step-number {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--orange-500);
    border-radius: var(--radius-full);
    margin: 0 auto 24px;
    transition: var(--transition-base);
}

.process-step:hover .process-step-number {
    background: var(--orange-500);
    transform: scale(1.05);
}

.process-step-number i {
    font-size: 2.2rem;
    color: var(--orange-500);
    transition: var(--transition-base);
}

.process-step:hover .process-step-number i {
    color: var(--white);
}

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

.process-step p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-500);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-orange);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--navy-900);
    transform: translateY(-4px);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(232, 97, 26, 0.2);
    border-top-color: var(--orange-500);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 97, 26, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(232, 97, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 97, 26, 0); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
        overflow-y: auto;
        align-items: flex-start;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li > a {
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-menu li:hover > .dropdown-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .about-grid,
    .about-detail-grid,
    .services-detail-grid,
    .contact-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid:nth-child(even) {
        direction: ltr;
    }
    
    .hero-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-experience-badge {
        right: 20px;
        bottom: -20px;
        width: 130px;
        height: 130px;
    }
    
    .about-experience-badge .years {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-stat {
        padding: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-form {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tracking-status-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .tracking-status-bar::before,
    .tracking-status-bar::after {
        display: none;
    }
    
    .tracking-details {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box,
    .quote-form-box,
    .quote-info {
        padding: 30px;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats-inner {
        grid-template-columns: 1fr;
    }
    
    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        gap: 30px;
    }
}

/* ===== Mobile Navigation Overlay ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 40, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Advanced Animations Added via Request ===== */

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--navy-900);
    z-index: 9999;
    animation: slideOutUp 1s cubic-bezier(0.8, 0, 0.2, 1) 0.5s forwards;
    pointer-events: none;
}

@keyframes slideOutUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); display: none; }
}

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    color: var(--orange-500) !important;
}

/* Ken Burns Effect */
.hero-bg img {
    transition: transform 10s ease-out;
    transform: scale(1);
}
.swiper-slide-active .hero-bg img {
    transform: scale(1.15);
}

/* Dropdown Slide Down */
.dropdown-menu {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.nav-menu li:hover > .dropdown-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Enhanced Hover Zoom */
.service-card-img img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.service-card:hover .service-card-img img {
    transform: scale(1.12) rotate(1deg);
}

/* Diagonal Divider */
.diagonal-divider {
    height: 100px;
    background: var(--navy-900);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}


        /* ===================================================
           3D FLIP REVEAL INTRO
        =================================================== */
        body.reveal-active {
            overflow: hidden;
        }

        #reveal-overlay {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            perspective: 1400px;
        }

        #reveal-overlay.done {
            pointer-events: none;
        }

        .reveal-panel {
            position: relative;
            height: 100vh;
            transform-style: preserve-3d;
            transform-origin: top center;
            will-change: transform, opacity;
        }

        .reveal-panel .panel-front,
        .reveal-panel .panel-back {
            position: absolute;
            inset: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .reveal-panel .panel-front {
            overflow: hidden;
            background: var(--navy-900, #0a1128);
        }

        .reveal-panel .panel-front img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.55) saturate(1.2);
            transition: transform 6s ease;
        }

        .reveal-panel .panel-front::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(10, 17, 40, 0.25) 0%,
                    rgba(232, 97, 26, 0.12) 50%,
                    rgba(10, 17, 40, 0.55) 100%);
        }

        .reveal-panel .panel-back {
            background: #0a1128;
            transform: rotateX(180deg);
        }

        /* Shimmer sweep across each panel */
        .panel-shine {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg,
                    transparent 40%,
                    rgba(255, 255, 255, 0.07) 50%,
                    transparent 60%);
            animation: panelShimmer 2s ease 0.2s infinite;
            z-index: 5;
            pointer-events: none;
        }

        @keyframes panelShimmer {
            0% {
                transform: translateX(-200%);
            }

            100% {
                transform: translateX(400%);
            }
        }

        /* Border between panels */
        .reveal-panel+.reveal-panel {
            border-left: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Staggered flip-away per panel */
        .reveal-panel.flip {
            animation: panelFlip3D 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
        }

        .reveal-panel:nth-child(1).flip {
            animation-delay: 0.00s;
        }

        .reveal-panel:nth-child(2).flip {
            animation-delay: 0.12s;
        }

        .reveal-panel:nth-child(3).flip {
            animation-delay: 0.24s;
        }

        .reveal-panel:nth-child(4).flip {
            animation-delay: 0.36s;
        }

        .reveal-panel:nth-child(5).flip {
            animation-delay: 0.48s;
        }

        @keyframes panelFlip3D {
            0% {
                transform: rotateX(0deg);
                opacity: 1;
            }

            60% {
                transform: rotateX(-75deg);
                opacity: 0.5;
            }

            100% {
                transform: rotateX(-90deg);
                opacity: 0;
            }
        }

        /* Central logo / brand mark */
        .reveal-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -55%) scale(0);
            z-index: 20;
            text-align: center;
            animation: logoAppear 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards;
            white-space: nowrap;
        }

        .reveal-logo img {
            width: 250px;
            height: auto;
            filter: drop-shadow(0 0 28px rgba(232, 97, 26, 0.85));
            margin-bottom: 14px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .reveal-logo-name {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 5px;
            display: block;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        }

        .reveal-logo-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem;
            color: #f47b2b;
            text-transform: uppercase;
            letter-spacing: 6px;
            display: block;
            margin-top: 8px;
        }

        /* Progress loader bar */
        .reveal-loader-wrap {
            position: absolute;
            bottom: 28%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            text-align: center;
        }

        .reveal-loader-bar {
            width: 200px;
            height: 2px;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 2px;
            overflow: hidden;
            margin: 0 auto 10px;
        }

        .reveal-loader-bar::after {
            content: '';
            display: block;
            height: 100%;
            background: linear-gradient(90deg, #e8611a, #f7943d);
            border-radius: 2px;
            animation: loaderFill 1.5s ease forwards 0.4s;
            width: 0;
        }

        .reveal-loader-text {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 4px;
            animation: fadeInText 0.6s ease 0.5s forwards;
            opacity: 0;
        }

        @keyframes loaderFill {
            0% {
                width: 0;
            }

            80% {
                width: 90%;
            }

            100% {
                width: 100%;
            }
        }

        @keyframes fadeInText {
            to {
                opacity: 1;
            }
        }

        @keyframes logoAppear {
            to {
                transform: translate(-50%, -55%) scale(1);
            }
        }

        /* Orange accent lines on panels 2 and 4 */
        .reveal-panel:nth-child(2) .panel-front::before,
        .reveal-panel:nth-child(4) .panel-front::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e8611a, transparent);
            z-index: 6;
        }
    

/* ===================================================
   UNIQUE PAGE ANIMATIONS
=================================================== */
/* 1. SPLIT DOOR REVEAL (About) */
#reveal-overlay-about {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    pointer-events: all;
}
#reveal-overlay-about.done { pointer-events: none; }

.door {
    width: 50%;
    height: 100%;
    background: var(--navy-900);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    overflow: hidden;
}
.door::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(232, 97, 26, 0.05), transparent);
}
.door-left { transform-origin: left; }
.door-right { transform-origin: right; }

#reveal-overlay-about.open .door-left { transform: translateX(-100%); }
#reveal-overlay-about.open .door-right { transform: translateX(100%); }

.reveal-logo-door {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.reveal-logo-door img { width: 200px; height: auto; margin-bottom: 15px; }
#reveal-overlay-about.open .reveal-logo-door { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }

/* 2. DIAGONAL SWEEP REVEAL (Services) */
#reveal-overlay-services {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: all;
    overflow: hidden;
    display: flex;
}
#reveal-overlay-services.done { pointer-events: none; }

.diagonal-slice {
    flex: 1;
    height: 150vh;
    background: var(--navy-900);
    transform: translateY(0) skewX(-20deg) scaleX(1.1);
    transform-origin: top;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    border-right: 1px solid rgba(255,255,255,0.05);
}
/* offset up to center the skew */
#reveal-overlay-services { align-items: center; justify-content: center; top: -25vh; bottom: -25vh; height: 150vh; }

#reveal-overlay-services.sweep .diagonal-slice { transform: translateY(100%) skewX(-20deg) scaleX(1.1); }
#reveal-overlay-services.sweep .slice-1 { transition-delay: 0s; }
#reveal-overlay-services.sweep .slice-2 { transition-delay: 0.1s; }
#reveal-overlay-services.sweep .slice-3 { transition-delay: 0.2s; }
#reveal-overlay-services.sweep .slice-4 { transition-delay: 0.3s; }
#reveal-overlay-services.sweep .slice-5 { transition-delay: 0.4s; }

.reveal-logo-diag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    transition: opacity 0.3s ease;
}
.reveal-logo-diag img { width: 220px; height: auto; margin-bottom: 15px; }
#reveal-overlay-services.sweep .reveal-logo-diag { opacity: 0; }

/* 3. CIRCULAR IRIS REVEAL (Contact) */
#reveal-overlay-contact {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
#reveal-overlay-contact.done { pointer-events: none; }

.iris-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    min-width: 100vh;
    min-height: 100vh;
    background: var(--navy-900);
    transform: translate(-50%, -50%) scale(2); /* covers screen */
    border-radius: 50%;
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 1.5s ease;
}
#reveal-overlay-contact.iris-open .iris-bg {
    transform: translate(-50%, -50%) scale(0);
}

.reveal-logo-iris {
    position: relative;
    z-index: 10;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.reveal-logo-iris img { width: 180px; height: auto; margin-bottom: 15px; }
#reveal-overlay-contact.iris-open .reveal-logo-iris { opacity: 0; transform: scale(1.2); }
