/* ===================================
   Top Events - Main Stylesheet
   Colors: Red (#EA252A), Dark Gray (#343433), White (#FFFFFF), Black (#000000)
   =================================== */

/* ===================================
   Font Loading Optimization
   =================================== */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: local('Poppins');
}

/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Brand Colors */
    --color-red: #EA252A;
    --color-red-dark: #c71f24;

    /* Light Mode Colors */
    --color-dark: #343433;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-light: #F5F5F5;
    --color-gray-medium: #E0E0E0;
    --color-gray-text: #666666;

    /* Theme Colors (Dynamic) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-dark: #343433;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-inverse: #FFFFFF;
    --border-color: #E0E0E0;

    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-dark: #0f0f0f;
    --text-primary: #FFFFFF;
    --text-secondary: #b0b0b0;
    --text-inverse: #000000;
    --border-color: #404040;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red {
    color: var(--color-red);
}

.section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--bg-secondary);
}

.section-header {
    display: block;
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-red);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

#serviceCategoryTitle {
    display: inline-block;
    color: var(--color-red) !important;
    font-weight: 900 !important;
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1), titleGlowFlash 1.5s ease-in-out 0.8s infinite;
    text-shadow: 0 0 20px rgba(234, 37, 42, 0.8),
        0 0 40px rgba(234, 37, 42, 0.6),
        0 0 60px rgba(234, 37, 42, 0.4);
}

#serviceCategoryDesc {
    display: inline-block;
    animation: slideInFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes titleGlowFlash {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(234, 37, 42, 0.8),
            0 0 40px rgba(234, 37, 42, 0.6),
            0 0 60px rgba(234, 37, 42, 0.4);
        opacity: 1;
    }

    50% {
        text-shadow: 0 0 30px rgba(234, 37, 42, 1),
            0 0 60px rgba(234, 37, 42, 0.8),
            0 0 90px rgba(234, 37, 42, 0.6);
        opacity: 1;
    }

    55% {
        text-shadow: 0 0 10px rgba(234, 37, 42, 0.4),
            0 0 20px rgba(234, 37, 42, 0.3);
        opacity: 0.8;
    }

    60% {
        text-shadow: 0 0 30px rgba(234, 37, 42, 1),
            0 0 60px rgba(234, 37, 42, 0.8),
            0 0 90px rgba(234, 37, 42, 0.6);
        opacity: 1;
    }
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #c71f24;
    border-color: #c71f24;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--color-red);
    font-weight: 600;
    border: none;
}

.btn-text:hover {
    color: #c71f24;
}

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

.btn-outline:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: var(--shadow-sm);
}

.btn-red:hover {
    background-color: var(--color-red-dark);
    border-color: var(--color-red-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    isolation: isolate;
    contain: layout style;
}

.navbar.scrolled {
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-full,
.logo-mark {
    height: 50px;
    width: auto;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.logo-full {
    opacity: 1;
}

.logo-mark {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: scale(0.8);
}

/* When scrolled */
.navbar.scrolled .logo-full {
    opacity: 0;
    transform: scale(0.8);
}

.navbar.scrolled .logo-mark {
    opacity: 1;
    transform: scale(1);
}

/* Dark mode: keep logodark.png when scrolled */
[data-theme="dark"] .navbar.scrolled .logo-full {
    opacity: 1;
    transform: scale(1);
}

[data-theme="dark"] .navbar.scrolled .logo-mark {
    opacity: 0;
    transform: scale(0.8);
}

.navbar.scrolled .nav-wrapper {
    padding: 10px 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color var(--transition-normal);
}

.navbar.scrolled .nav-links a {
    color: var(--color-red);
}

/* Active link should remain red when scrolled */
.navbar.scrolled .nav-links a.active {
    color: var(--color-red);
}

/* Keep mobile menu links white even when scrolled */
@media (max-width: 768px) {
    .navbar.scrolled .nav-links a {
        color: var(--color-white);
    }

    .navbar.scrolled .nav-links a:hover,
    .navbar.scrolled .nav-links a.active {
        color: var(--color-red);
    }
}



/* Nav Actions Container */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}

/* Theme Toggle Switch */
.theme-toggle {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    border: none;
    background-color: rgba(234, 37, 42, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 3px;
    transition: var(--transition-normal);
    position: relative;
}

.theme-toggle:hover {
    background-color: rgba(234, 37, 42, 0.3);
}

/* Toggle Circle */
.theme-toggle::before {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-red);
    position: absolute;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .theme-toggle::before {
    left: calc(100% - 27px);
    background-color: var(--color-red);
}

[data-theme="dark"] .theme-toggle {
    background-color: rgba(234, 37, 42, 0.2);
}

.theme-toggle svg {
    width: 14px;
    height: 14px;
    transition: var(--transition-normal);
    position: absolute;
    z-index: 1;
}

.sun-icon {
    opacity: 1;
    left: 8px;
    color: white;
}

.moon-icon {
    opacity: 0.5;
    right: 8px;
    color: var(--color-red);
}

[data-theme="dark"] .sun-icon {
    opacity: 0.5;
    left: 8px;
    color: var(--color-red);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    right: 8px;
    color: white;
}

/* Hide mobile download link on desktop */
.mobile-download-link {
    display: none;
}

/* Message Counter */
.message-counter {
    text-align: right;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
    font-weight: 500;
}

/* Inline Error Styling (Quick Contact Form) */
.field-error {
    border: 2px solid var(--color-red) !important;
    box-shadow: 0 0 0 3px rgba(234, 37, 42, 0.1) !important;
}

.inline-error {
    color: var(--color-red);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    display: block;
    animation: errorShake 0.3s ease;
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Spinner Animation for Form Buttons */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Captcha Field */
.captcha-group {
    margin: 20px 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.captcha-group label {
    font-weight: 600 !important;
    color: var(--color-red) !important;
    margin-bottom: 0 !important;
    flex: 1 1 auto !important;
    min-width: 200px !important;
    display: inline-block !important;
    word-wrap: break-word !important;
}

.captcha-group input {
    width: 150px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    padding: 12px 15px !important;
    font-size: 15px !important;
}

/* Mobile responsive for captcha */
@media (max-width: 768px) {
    .captcha-group {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .captcha-group label {
        white-space: normal !important;
        width: 100% !important;
        min-width: unset !important;
    }

    .captcha-group input {
        width: 100% !important;
    }
}

/* Hide number input arrows */
.captcha-group input[type="number"]::-webkit-inner-spin-button,
.captcha-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.captcha-group input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Message Modal */
.message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.message-modal.active {
    opacity: 1;
    visibility: visible;
}

.message-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.message-modal.active .message-modal-content {
    transform: scale(1);
}

.message-modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.message-modal.success .message-modal-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    animation: successPulse 0.6s ease;
}

.message-modal.error .message-modal-icon {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    animation: errorShake 0.5s ease;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.message-modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.message-modal-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.message-modal-btn {
    background: var(--color-red);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message-modal-btn:hover {
    background: #c71f24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 37, 42, 0.3);
}

[data-theme="dark"] .message-modal-content {
    background: var(--bg-dark);
}

[data-theme="dark"] .message-modal-title {
    color: var(--color-white);
}

[data-theme="dark"] .message-modal-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Download Profile Button */
.download-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(234, 37, 42, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
}

.download-profile:hover {
    background-color: var(--color-red);
    transform: scale(1.1);
}

.download-profile svg {
    width: 20px;
    height: 20px;
    color: var(--color-red);
    transition: var(--transition-normal);
}

.download-profile:hover svg {
    color: var(--color-white);
}

/* Download Profile Tooltip */
.download-profile::after {
    content: 'Download Company Profile';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-red);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-profile::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.download-profile:hover::after,
.download-profile:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--color-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Keep active underline visible when scrolled */
.navbar.scrolled .nav-links a.active::after {
    width: 100%;
    background-color: var(--color-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background-color: var(--color-red);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--color-red);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--color-red);
}

[data-theme="dark"] .hamburger.active span {
    background-color: var(--color-red);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    contain: layout style paint;
}

/* Hero Background Video */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) translateZ(0);
    z-index: 0;
    opacity: 0.3;
    object-fit: cover;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    isolation: isolate;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 52, 51, 0.7) 0%, rgba(52, 52, 51, 0.6) 100%);
    z-index: 1;
}

/* Hero Mark Animation */
.hero-mark-container {
    position: relative;
    flex-shrink: 0;
    opacity: 0;
    animation: markShootIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    margin-right: 80px;
}

.hero-mark {
    width: 450px;
    height: auto;
    animation: markRotate 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        flickerGlow 3s ease-in-out 1.2s infinite;
}

@keyframes markShootIn {
    0% {
        opacity: 0;
        transform: translateX(-200%) scale(0.5) rotate(-45deg);
        filter: drop-shadow(0 0 0px rgba(234, 37, 42, 0));
    }

    20% {
        opacity: 1;
        filter: drop-shadow(-30px 0 40px rgba(234, 37, 42, 0.8)) drop-shadow(-60px 0 60px rgba(234, 37, 42, 0.6)) drop-shadow(-90px 0 80px rgba(234, 37, 42, 0.4));
    }

    60% {
        opacity: 1;
        transform: translateX(10px) scale(1.1) rotate(5deg);
        filter: drop-shadow(-15px 0 30px rgba(234, 37, 42, 0.5)) drop-shadow(-30px 0 40px rgba(234, 37, 42, 0.3));
    }

    80% {
        transform: translateX(-5px) scale(0.95) rotate(-2deg);
        filter: drop-shadow(0 0 20px rgba(234, 37, 42, 0.3));
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0px rgba(234, 37, 42, 0));
    }
}

@keyframes markRotate {
    0% {
        filter: blur(8px) brightness(1.5);
    }

    60% {
        filter: blur(0px) brightness(1.2);
    }

    100% {
        filter: blur(0px) brightness(1);
    }
}

/* Flickering glow effect after landing */
@keyframes flickerGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(137, 22, 26, 0.6)) drop-shadow(0 0 20px rgba(234, 37, 42, 0.4)) drop-shadow(0 0 30px rgba(234, 37, 42, 0.2));
    }

    5% {
        filter: drop-shadow(0 0 5px rgba(234, 37, 42, 0.3)) drop-shadow(0 0 10px rgba(234, 37, 42, 0.2));
    }

    10% {
        filter: drop-shadow(0 0 15px rgba(234, 37, 42, 0.7)) drop-shadow(0 0 25px rgba(234, 37, 42, 0.5)) drop-shadow(0 0 35px rgba(234, 37, 42, 0.3));
    }

    15% {
        filter: drop-shadow(0 0 8px rgba(234, 37, 42, 0.5)) drop-shadow(0 0 15px rgba(234, 37, 42, 0.3));
    }

    20% {
        filter: drop-shadow(0 0 12px rgba(155, 20, 25, 0.6)) drop-shadow(0 0 22px rgba(234, 37, 42, 0.4)) drop-shadow(0 0 32px rgba(234, 37, 42, 0.2));
    }

    25%,
    75% {
        filter: drop-shadow(0 0 10px rgba(136, 14, 18, 0.6)) drop-shadow(0 0 20px rgba(234, 37, 42, 0.4)) drop-shadow(0 0 30px rgba(234, 37, 42, 0.2));
    }

    80% {
        filter: drop-shadow(0 0 6px rgba(234, 37, 42, 0.4)) drop-shadow(0 0 12px rgba(234, 37, 42, 0.2));
    }

    85% {
        filter: drop-shadow(0 0 14px rgba(234, 37, 42, 0.7)) drop-shadow(0 0 24px rgba(234, 37, 42, 0.5)) drop-shadow(0 0 34px rgba(234, 37, 42, 0.3));
    }

    90% {
        filter: drop-shadow(0 0 9px rgba(234, 37, 42, 0.5)) drop-shadow(0 0 18px rgba(234, 37, 42, 0.3));
    }
}

.hero-content {
    position: relative;
    text-align: left;
    max-width: 700px;
    opacity: 0;
    animation: slideInFromRight 1.2s ease-out 0.3s forwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;

}

/* Word-by-word animation */
.word-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordFadeInUp 0.8s ease forwards;
}

.word-1 {
    animation-delay: 0.5s;
}

.word-2 {
    animation-delay: 1s;
}

.word-3 {
    animation-delay: 1.5s;
}

@keyframes wordFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }

    100% {
        opacity: 10;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 1;
    line-height: 1.6;

}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 10px;
    background: none;
    border: none;
    outline: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-indicator:active,
.scroll-indicator:focus {
    outline: none;
    background: none;
}

.scroll-indicator:hover span {
    border-color: var(--color-red);
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    position: relative;
    transition: var(--transition-normal);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 16px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 0.5;
        transform: translateY(0);
    }
}

/* ===================================
   About Preview Section
   =================================== */
.about-preview {
    position: relative;
    overflow: hidden;
    padding: 120px 0 !important;
}

/* About Mark Decoration */
.about-mark-container {
    position: absolute;
    top: 20px;
    right: 12%;
    z-index: 1;
    opacity: 0;
    animation: aboutMarkFloat 3s ease-out 0.5s forwards;
}

.about-mark {
    width: 180px;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(234, 37, 42, 0.3));
    animation: aboutMarkGlow 4s ease-in-out infinite, aboutMarkRotate 3s ease-in-out infinite;
}

@keyframes aboutMarkFloat {
    0% {
        opacity: 0;
        transform: translateY(-30px) rotate(-10deg) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes aboutMarkGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(234, 37, 42, 0.3)) drop-shadow(0 0 40px rgba(234, 37, 42, 0.2));
        opacity: 1;
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(234, 37, 42, 0.5)) drop-shadow(0 0 60px rgba(234, 37, 42, 0.3)) drop-shadow(0 0 80px rgba(234, 37, 42, 0.2));
        opacity: 1;
    }
}

@keyframes aboutMarkRotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Decorative curved shapes */
.about-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    pointer-events: none;
    z-index: 1;
}

.about-shape-left {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.6), rgba(220, 220, 220, 0.8));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation: floatCircle1 8s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 8%;
    animation: floatCircle2 6s ease-in-out infinite;
}

.circle-3 {
    width: 120px;
    height: 120px;
    top: 75%;
    left: 3%;
    animation: floatCircle3 7s ease-in-out infinite;
}

@keyframes floatCircle1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatCircle2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(15px, -15px) scale(0.9);
        opacity: 0.9;
    }
}

@keyframes floatCircle3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.65;
    }

    50% {
        transform: translate(-10px, -20px) scale(1.15);
        opacity: 0.85;
    }
}

.about-shape-right {
    bottom: 0;
    right: 0;
}

.about-preview .container {
    position: relative;
    z-index: 2;
}

.about-preview .section-header {
    margin-bottom: 15px;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.about-preview-text .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-preview-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-preview-text .btn {
    margin-top: 10px;
}

.about-preview-video {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.thumbnail-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.6) 0%, rgba(234, 37, 42, 0.4) 50%, rgba(234, 37, 42, 0.6) 100%);
    border-radius: 12px;
    z-index: 2;
    transition: var(--transition-normal);
}

.video-thumbnail:hover .video-overlay {
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.5) 0%, rgba(234, 37, 42, 0.3) 50%, rgba(234, 37, 42, 0.5) 100%);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.thumbnail-logo {
    width: 250px;
    height: auto;
    opacity: 0;
    transition: var(--transition-normal);
    transform: scale(0.5) rotate(-45deg) translateX(-200px);
}

.video-thumbnail:hover .thumbnail-logo {
    opacity: 0.5;
}

/* Mark fly-in animation */
@keyframes markFlyIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg) translateX(-300px) translateY(-200px);
        filter: blur(10px) drop-shadow(0 0 40px rgba(234, 37, 42, 0.8));
    }

    50% {
        filter: blur(5px) drop-shadow(0 0 30px rgba(234, 37, 42, 0.6));
    }

    70% {
        opacity: 0.4;
        transform: scale(1.2) rotate(10deg) translateX(0) translateY(0);
        filter: blur(2px) drop-shadow(0 0 20px rgba(234, 37, 42, 0.4));
    }

    85% {
        transform: scale(0.9) rotate(-5deg);
    }

    100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg) translateX(0) translateY(0);
        filter: blur(0px) drop-shadow(0 0 0px rgba(234, 37, 42, 0));
    }
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 3;
}

.play-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: var(--transition-normal);
}

.video-thumbnail:hover .play-button svg {
    transform: scale(1.1);
}

.about-video {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--color-black);
}

.about-video.playing {
    display: block;
}

.about-video:focus {
    outline: 2px solid var(--color-red);
    outline-offset: 2px;
}

/* Affiliates Section */
.affiliates-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

[data-theme="dark"] .affiliates-section {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.affiliates-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.affiliates-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 50px;
}

.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.affiliate-logo {
    width: 100%;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .affiliate-logo {
    background: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.affiliate-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .affiliate-logo:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.affiliate-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.affiliate-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--color-gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-gray-medium);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-gray-medium);
}

/* ===================================
   Services Preview Section
   =================================== */
.services-preview {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Parallax Background */
.services-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 1s ease-in-out;
    z-index: 0;
}

.services-bg-parallax[data-bg="0"] {
    background-image: url('../images/parallax/people-taking-part-high-protocol-event.jpg');
}

.services-bg-parallax[data-bg="1"] {
    background-image: url('../images/parallax/managing-smart-speakers-concept.jpg');
}

.services-bg-parallax[data-bg="2"] {
    background-image: url('../images/parallax/high-angle-man-holding-camera.jpg');
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(52, 52, 51, 0.9) 100%);
    z-index: 1;
}

.services-preview .container {
    position: relative;
    z-index: 2;
}

/* Services Slider */
.services-slider {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.services-slides {
    flex: 1;
    overflow: hidden;
    max-width: 100%;
}

.services-categories {
    display: flex;
    transition: none;
    gap: 0;
    width: 300%;
    perspective: 2000px;
}

.service-category {
    flex: 0 0 calc(100% / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    box-sizing: border-box;
    min-height: auto;
    opacity: 0;
    pointer-events: none;
}

.service-category.active {
    opacity: 1;
    pointer-events: auto;
}

/* Navigation Buttons */
.service-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 3;
    opacity: 0.7;
}

.service-nav-btn.prev-btn {
    left: -180px;
}

.service-nav-btn.next-btn {
    right: -180px;
}

.service-nav-btn:hover {
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
}

.service-nav-btn svg {
    width: 120px;
    height: 120px;
    stroke: var(--color-red);
    stroke-width: 2;
    filter: drop-shadow(0 0 15px rgba(234, 37, 42, 0.7));
    transition: all 0.4s ease;
}

.service-nav-btn:hover svg {
    filter: drop-shadow(0 0 30px rgba(234, 37, 42, 1));
}

/* Service Indicators */
.service-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.indicator.active {
    background: var(--color-red);
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(234, 37, 42, 0.7);
}

/* Service Split Layout */
.service-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category.page-flip-out .service-split {
    animation: pageFlipOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-category.page-flip-in .service-split {
    animation: pageFlipIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageFlipOut {
    0% {
        transform: perspective(2000px) rotateY(0deg);
    }

    100% {
        transform: perspective(2000px) rotateY(-90deg);
    }
}

@keyframes pageFlipIn {
    0% {
        transform: perspective(2000px) rotateY(90deg);
    }

    100% {
        transform: perspective(2000px) rotateY(0deg);
    }
}

@keyframes iconChange {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Service Content */
.service-left {
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Match container padding for first category */
.service-category:nth-child(1) .service-left {
    padding: 0 20px;
}

.sub-services-list {
    width: 100%;
    max-width: 1200px;
}

.sub-services-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

/* First category with 6 items - all on one line, use more space */
.service-category:nth-child(1) .sub-services-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
    max-width: 100%;
}

/* Other categories with 4 items - centered */
.service-category:nth-child(2) .sub-services-grid,
.service-category:nth-child(3) .sub-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sub-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 15px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 0 0 auto;
    width: 180px;
    height: 180px;
}

/* First category items - square to fit 6 on one line */
.service-category:nth-child(1) .sub-service-item {
    flex: 1 1 0;
    width: auto;
    height: 170px;
    min-width: 170px;
    aspect-ratio: 1 / 1;
    padding: 18px 12px;
    gap: 12px;
}

/* Remove different sizing for first category - all same size */

.sub-service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-service-item:hover {
    transform: translateY(-8px);
    background: rgba(234, 37, 42, 0.1);
    border-color: rgba(234, 37, 42, 0.5);
    box-shadow: 0 15px 40px rgba(234, 37, 42, 0.4);
}

.sub-service-item:hover::before {
    opacity: 1;
}

.sub-service-item.active {
    background: rgba(234, 37, 42, 0.2);
    border-color: var(--color-red);
    box-shadow: 0 0 40px rgba(234, 37, 42, 0.6);
}

.sub-service-item.active::before {
    opacity: 1;
}

.sub-service-icon {
    width: 55px;
    height: 55px;
    position: relative;
    z-index: 1;
}

.sub-service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-red);
    fill: none;
    stroke-width: 2;
    filter: drop-shadow(0 0 12px rgba(234, 37, 42, 0.7));
    transition: all 0.4s ease;
}

.sub-service-item:hover .sub-service-icon svg,
.sub-service-item.active .sub-service-icon svg {
    filter: drop-shadow(0 0 25px rgba(234, 37, 42, 1));
    transform: scale(1.15);
}

.sub-service-name {
    font-size: 15px;
    color: var(--color-white);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.sub-service-number {
    display: none;
}

/* Sub-service Description */
.sub-service-description {
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    padding: 25px 30px;
    background: rgba(234, 37, 42, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--color-red);
    border-radius: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-service-description p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Service Description */
.service-right {
    display: none;
}

.category-icon {
    display: none;
}

.category-description {
    display: none;
}


/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #ea252a 0%, #c01f23 50%, #ea252a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dark gradient circle in top-left corner */
.cta-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaCorner1 8s ease-in-out infinite;
}

@keyframes ctaCorner1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-20px, -20px) scale(1.05);
        opacity: 0.8;
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Projects Section & Carousel
   =================================== */
.carousel-container {
    position: relative;
    overflow: visible;
    padding: 0 60px 20px;
    margin-top: 40px;
}

.carousel {
    overflow: hidden;
    padding: 15px 0 15px 15px;
    margin-left: -15px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.project-card,
.featured-project-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    margin: 20px 0;
}

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

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.project-image .image-placeholder {
    height: 100%;
    border-radius: 0;
    border: none;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #c71f24;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gray-medium);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-dot.active {
    background-color: var(--color-red);
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   Featured Projects Section
   =================================== */
.projects-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Artistic Brush Strokes Background */
.projects-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(234, 37, 42, 0.25) 0%, rgba(234, 37, 42, 0.12) 40%, transparent 70%);
    filter: blur(40px);
    transform: rotate(-25deg);
    animation: floatStroke1 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.projects-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(234, 37, 42, 0.22) 0%, rgba(234, 37, 42, 0.1) 40%, transparent 65%);
    filter: blur(50px);
    transform: rotate(35deg);
    animation: floatStroke2 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Center glow behind cards */
.projects-section .carousel-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(234, 37, 42, 0.18) 0%, rgba(234, 37, 42, 0.08) 35%, transparent 60%);
    filter: blur(60px);
    animation: centerGlow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatStroke1 {

    0%,
    100% {
        transform: rotate(-25deg) translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: rotate(-20deg) translate(20px, -15px);
        opacity: 0.9;
    }
}

@keyframes floatStroke2 {

    0%,
    100% {
        transform: rotate(35deg) translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: rotate(40deg) translate(-25px, 20px);
        opacity: 0.8;
    }
}

@keyframes centerGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.projects-section .section-header,
.projects-section .carousel-container {
    position: relative;
    z-index: 2;
}

.projects-section .carousel-container .carousel {
    position: relative;
    z-index: 2;
}

/* ===================================
   Our Clients Section
   =================================== */
.clients-section {
    background: var(--bg-primary);
    overflow: hidden;
    padding-bottom: 100px;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.clients-marquee:first-of-type {
    margin-top: 20px;
}

.clients-marquee+.clients-marquee {
    margin-top: 0;
}

/* Fade effect on edges */
.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

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

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

.clients-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollLeft 40s linear infinite;
}

.clients-marquee-reverse .clients-track {
    animation: scrollRight 40s linear infinite;
}

.client-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform var(--transition-normal);
}

.client-card:hover {
    transform: scale(1.05);
}

.client-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.logo-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

/* ===================================
   Quick Contact Section
   =================================== */
.quick-contact-section {
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.quick-contact-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 700px;
    position: relative;
    z-index: 2;
}

/* Left Side - Image */
.quick-contact-image {
    position: relative;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.9) 0%, rgba(234, 37, 42, 0.7) 100%),
        url('../images/parallax/people-taking-part-high-protocol-event.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(234, 37, 42, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.contact-badge {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: floatBadge 4s ease-in-out infinite;
}

.contact-badge svg {
    color: var(--color-red);
    stroke-width: 2.5;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

/* Right Side - Contact Form */
.quick-contact-content {
    background: var(--bg-primary);
    padding: 80px 100px 80px 80px;
    position: relative;
    z-index: 1;
}

.quick-contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 37, 42, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.quick-contact-header {
    margin-bottom: 40px;
    text-align: left;
}

.quick-contact-header .section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.quick-contact-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.quick-contact-header .section-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 100%;
}

/* Contact Form */
.quick-contact-form {
    position: relative;
    z-index: 1;
}

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

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

.quick-contact-form input,
.quick-contact-form select,
.quick-contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
    outline: none;
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.quick-contact-form input:focus,
.quick-contact-form select:focus,
.quick-contact-form textarea:focus {
    border-color: var(--color-red);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(234, 37, 42, 0.1);
}

.quick-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.quick-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.quick-contact-form .btn-primary {
    width: 100%;
    padding: 18px 40px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.quick-contact-form .btn-primary svg {
    transition: transform var(--transition-normal);
}

.quick-contact-form .btn-primary:hover svg {
    transform: translateX(5px);
}

/* Contact Info */
.quick-contact-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--color-red);
    margin-top: 2px;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-item div p {
    margin-bottom: 4px;
}

.contact-info-item div p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .clients-marquee {
        padding: 8px 0;
    }

    .clients-marquee:first-of-type {
        margin-top: 20px;
    }

    .clients-track {
        gap: 20px;
    }

    .client-card {
        width: 150px;
        height: 90px;
        padding: 8px;
    }

    .logo-placeholder {
        font-size: 14px;
    }

    /* Quick Contact Section - Mobile */
    .quick-contact-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .quick-contact-image {
        min-height: 300px;
        order: 2;
    }

    .contact-badge {
        width: 90px;
        height: 90px;
    }

    .contact-badge svg {
        width: 28px;
        height: 28px;
    }

    .quick-contact-content {
        padding: 50px 25px;
        order: 1;
    }

    .quick-contact-header .section-title {
        font-size: 28px;
    }

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

    .quick-contact-info {
        flex-direction: column;
        gap: 25px;
    }

    .quick-contact-form .btn-primary {
        padding: 16px 30px;
    }
}

/* ===================================
   Featured Projects Section
   =================================== */
.featured-projects {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.featured-projects-grid .featured-project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.featured-projects-grid .featured-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-project-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

/* Adjust for carousel */
.carousel .featured-project-card {
    border-radius: 15px;
}

.carousel .featured-project-image {
    height: 450px;
    border-radius: 15px;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.1);
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.featured-project-info {
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.featured-project-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.featured-project-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.featured-project-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.featured-project-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-project-link:hover {
    color: var(--color-red);
    transform: translateX(5px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .featured-project-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-projects {
        padding: 60px 0;
    }

    .featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .featured-project-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .featured-project-image {
        height: 280px;
    }

    .featured-project-title {
        font-size: 20px;
    }

    .featured-project-overlay {
        opacity: 1;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.85) 100%);
    }

    .featured-project-info {
        transform: translateY(0);
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--color-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-red);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* ===================================
   WhatsApp Widget
   =================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    isolation: isolate;
    contain: layout style paint;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-widget svg {
        width: 26px;
        height: 26px;
    }
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero .container {
        flex-direction: row;
        gap: 40px;
    }

    .hero-mark-container {
        margin-right: 40px;
    }

    .hero-mark {
        width: 300px;
    }

    .hero-content {
        text-align: left;
    }

    .about-preview-content {
        gap: 40px;
    }

    .project-card {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .carousel-btn-prev {
        left: 0;
    }

    .carousel-btn-next {
        right: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-slider {
        padding: 0 150px;
    }

    .service-nav-btn.prev-btn {
        left: -150px;
    }

    .service-nav-btn.next-btn {
        right: -150px;
    }

    .service-nav-btn svg {
        width: 150px;
        height: 150px;
    }

    .service-left {
        padding: 50px 40px;
    }

    .service-right {
        padding: 50px 40px;
    }

    .category-icon {
        width: 150px;
        height: 150px;
    }

    .category-icon svg {
        width: 80px;
        height: 80px;
    }

    .category-description {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Reduce section header spacing on mobile */
    .section-header {
        margin-bottom: 25px;
    }

    /* About Mark - Mobile */
    .about-mark-container {
        top: 20px;
        right: 20px;
    }

    .about-mark {
        width: 100px;
        opacity: 1;
    }

    /* Navigation */
    .hamburger {
        display: flex;
    }

    /* Hide download icon button on mobile */
    .download-profile {
        display: none !important;
    }

    /* Show mobile download text link on mobile */
    .mobile-download-link {
        display: block !important;
    }

    .logo-full,
    .logo-mark {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }

    /* Mobile Menu Logo Container */
    .mobile-menu-logo {
        position: absolute;
        top: 15px;
        left: 20px;
        height: 40px;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    }

    .nav-menu.active .mobile-menu-logo {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu-logo img {
        height: 40px;
        width: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 120px 40px 60px;
        max-width: 600px;
        margin: 0 auto;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: none !important;
    }

    .nav-menu.active .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        color: var(--color-white);
        font-size: 28px;
        font-weight: 600;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--color-red);
        border-bottom: 2px solid var(--color-red);
        padding-left: 10px;
    }

    /* Mobile Menu Social Icons */
    .mobile-social-icons {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        padding: 30px 40px 30px;
        max-width: 600px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
    }

    .nav-menu.active .mobile-social-icons {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-social-icons a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icons a:hover {
        background: var(--color-red);
        transform: translateY(-3px);
        border-color: var(--color-red);
    }

    .mobile-social-icons svg {
        width: 22px;
        height: 22px;
        color: white;
        fill: white;
        stroke: white;
    }

    .mobile-social-icons a:hover svg {
        color: white;
        fill: white;
        stroke: white;
    }

    /* Hide WhatsApp when menu is open */
    body:has(.nav-menu.active) .whatsapp-widget {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero .container {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }

    .hero-mark-container {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-mark {
        width: 200px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* About Preview */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-preview-text .lead {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .video-label {
        font-size: 20px;
    }

    .about-video {
        height: 220px;
    }

    .image-placeholder {
        height: 300px;
    }

    /* Hide animated circles on mobile */
    .animated-circle {
        display: none !important;
    }

    /* Affiliates */
    .affiliates-section {
        margin-top: 50px;
        padding-top: 40px;
    }

    .affiliates-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .affiliates-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .affiliates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .affiliate-logo {
        max-width: 140px;
        height: 80px;
        padding: 15px;
    }

    /* Services */
    .services-preview {
        padding: 60px 0;
        min-height: auto;
        overflow: visible;
    }

    .services-preview .container {
        padding: 0 20px;
        max-width: 100%;
        overflow: visible;
    }

    .services-slider {
        gap: 0;
        padding: 0;
        margin: 0 40px;
        flex-direction: column;
        width: auto;
        box-sizing: border-box;
    }

    .service-nav-btn {
        flex-shrink: 0;
        opacity: 1;
        z-index: 100;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .service-nav-btn.prev-btn {
        left: 10px;
    }

    .service-nav-btn.next-btn {
        right: 10px;
    }

    .service-nav-btn svg {
        width: 50px;
        height: 50px;
        stroke-width: 3;
    }

    .services-slides {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .services-categories {
        width: 300%;
        box-sizing: border-box;
    }

    .service-category {
        padding: 20px 0;
        min-height: auto;
        flex: 0 0 calc(100% / 3);
        box-sizing: border-box;
    }

    .service-split {
        flex-direction: column;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .service-left {
        padding: 20px 10px;
    }

    .sub-services-list {
        max-width: 100%;
    }

    .sub-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    /* All categories same grid on tablet */
    .service-category:nth-child(1) .sub-services-grid,
    .service-category:nth-child(2) .sub-services-grid,
    .service-category:nth-child(3) .sub-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sub-service-item {
        padding: 15px 10px;
        gap: 8px;
        min-height: 100px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    /* All items same size on tablet */
    .service-category:nth-child(1) .sub-service-item {
        width: 100%;
        min-width: auto;
        max-width: none;
        height: auto;
    }

    .sub-service-description {
        margin-top: 20px;
        padding: 20px 15px;
        font-size: 14px;
    }

    /* Remove different sizing - all same size on tablet */

    .sub-service-icon {
        width: 40px;
        height: 40px;
    }

    .sub-service-name {
        font-size: 12px;
        line-height: 1.3;
    }


    /* CTA */
    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    /* Projects Carousel */
    .project-card {
        flex: 0 0 100%;
    }

    /* Hide carousel arrows on mobile, use dots only */
    .carousel-btn {
        display: none !important;
    }

    /* Contain carousel but show shadows */
    .projects-section .container {
        overflow: hidden;
    }

    .carousel-container {
        padding: 0 20px;
        margin-top: 5px;
        overflow: visible;
    }

    .carousel {
        overflow: hidden;
        padding: 0;
    }

    .carousel-track {
        padding: 0;
    }

    .project-card,
    .featured-project-card {
        flex: 0 0 100%;
        max-width: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    [data-theme="dark"] .project-card,
    [data-theme="dark"] .featured-project-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    /* Adjust dots position */
    .carousel-dots {
        margin-top: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Services - Extra Small Screens */
    .services-preview {
        padding: 40px 0;
    }

    .services-preview .container {
        padding: 0 15px;
    }

    /* Fix parallax and overlay on mobile */
    .services-bg-parallax {
        background-attachment: scroll !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    .services-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .services-slider {
        padding: 0;
        margin: 0 35px;
    }

    .service-nav-btn.prev-btn {
        left: 5px;
    }

    .service-nav-btn.next-btn {
        right: 5px;
    }

    .service-nav-btn svg {
        width: 40px;
        height: 40px;
    }

    .service-category {
        padding: 15px 0;
    }

    .service-left {
        padding: 15px 5px;
    }

    .sub-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    /* All categories same grid on mobile */
    .service-category:nth-child(1) .sub-services-grid,
    .service-category:nth-child(2) .sub-services-grid,
    .service-category:nth-child(3) .sub-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .sub-service-item {
        padding: 12px 8px;
        gap: 6px;
        min-height: 90px;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    /* All items same size on mobile */
    .service-category:nth-child(1) .sub-service-item {
        width: 100%;
        min-width: auto;
        max-width: none;
        height: auto;
    }

    .sub-service-icon {
        width: 30px;
        height: 30px;
    }

    .sub-service-name {
        font-size: 9px;
        line-height: 1.2;
    }

    .sub-service-description {
        margin-top: 15px;
        padding: 15px 10px;
        font-size: 12px;
    }

    .sub-service-description p {
        font-size: 12px;
        line-height: 1.6;
    }

}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Page Hero Section with Breadcrumbs */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: var(--navbar-height, 80px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 20px;
}

.breadcrumbs-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.breadcrumbs-list li {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs-list a:hover {
    color: var(--color-red);
}

.breadcrumbs-list li[aria-current="page"] {
    color: var(--color-red);
    font-weight: 600;
}

/* Story Section */
.about-story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text .section-label {
    display: inline-block;
    background: rgba(234, 37, 42, 0.1);
    color: var(--color-red);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.story-text .section-title {
    margin-bottom: 30px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.story-text p.lead {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
}

/* Stats Cards */
.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(234, 37, 42, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-plus {
    font-size: 36px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
}

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

.mission-vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--color-red);
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(234, 37, 42, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 37, 42, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--color-red);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Core Values */
.core-values {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(234, 37, 42, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.1) 0%, rgba(234, 37, 42, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-red);
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding: 40px 0;
    margin-top: 60px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-red), rgba(234, 37, 42, 0.2));
    top: 0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 50px;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-marker {
    justify-content: flex-start;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--color-red);
    border-radius: 50%;
    position: relative;
    left: -40px;
    top: 10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: 30px;
}

.timeline-content {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 30px rgba(234, 37, 42, 0.15);
    transform: translateY(-3px);
}

.timeline-year {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.why-card:hover {
    border-top-color: var(--color-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(234, 37, 42, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.1) 0%, rgba(234, 37, 42, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--color-red);
}

.why-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.why-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 42px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
        margin-top: 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .breadcrumbs-list {
        gap: 10px;
        font-size: 12px;
    }

    .breadcrumbs-list li:not(:last-child)::before {
        margin-left: 10px;
    }

    .about-story {
        padding: 60px 0;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .mission-vision {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .timeline-marker {
        justify-content: flex-start !important;
    }

    .timeline-dot {
        left: -32px !important;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
        margin-top: 50px;
        padding: 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .values-grid {
        gap: 15px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 14px;
    }
}

/* About Page - Hero Section */
.page-hero {
    position: relative;
    min-height: 400px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #343433 0%, #2a2a2a 100%);
    overflow: hidden;
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 52, 51, 0.5);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs-hero {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: none;
    padding: 15px 0;
    z-index: 3;
}

.breadcrumbs-hero .breadcrumbs-list li {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs-hero .breadcrumbs-list a {
    color: var(--color-white);
    text-decoration: none;
}

.breadcrumbs-hero .breadcrumbs-list a:hover {
    color: var(--color-red);
    text-decoration: underline;
}

.breadcrumbs-hero .breadcrumbs-list li[aria-current="page"] {
    color: var(--color-white);
}

.breadcrumbs-hero .breadcrumbs-list li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs-list li {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs-list a {
    color: var(--color-red);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumbs-list a:hover {
    color: #c71f24;
    text-decoration: underline;
}

.breadcrumbs-list li[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumbs-list li:not(:last-child)::after {
    content: '/';
    margin-left: 0;
    color: var(--text-secondary);
}

/* Scroll Indicator for Hero */
.page-hero .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 10px;
    background: none;
    border: none;
    outline: none;
}

.page-hero .scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.page-hero .scroll-indicator:active,
.page-hero .scroll-indicator:focus {
    outline: none;
    background: none;
}

.page-hero .scroll-indicator:hover span {
    border-color: var(--color-red);
}

.page-hero .scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-white);
    border-radius: 20px;
    position: relative;
    transition: var(--transition-normal);
}

.page-hero .scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Story Section */
.about-story {
    position: relative;
    overflow: hidden;
}

.story-header {
    margin-bottom: 50px;
}

.story-header .section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.15) 0%, rgba(234, 37, 42, 0.05) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-red);
    margin-bottom: 20px;
}

.story-header .section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.story-content {
    padding-top: 20px;
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: #f5f5f5;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

[data-theme="dark"] .stat-card {
    background: var(--bg-secondary);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-featured {
    background: white;
    border: 2px solid rgba(234, 37, 42, 0.3);
    box-shadow: 0 8px 24px rgba(234, 37, 42, 0.1);
}

[data-theme="dark"] .stat-card-featured {
    background: var(--bg-secondary);
    border: 2px solid var(--color-red);
}

.stat-card-featured:hover {
    border-color: var(--color-red);
    box-shadow: 0 12px 32px rgba(234, 37, 42, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 12px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.stat-plus {
    font-size: 32px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin: 0;
}

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border-top: 4px solid transparent;
}

[data-theme="dark"] .mission-card {
    background: var(--bg-secondary);
    box-shadow: var(--shadow-md);
}

.mission-card:hover {
    border-top-color: var(--color-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.15) 0%, rgba(234, 37, 42, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-red);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .feature-item {
    background: var(--bg-secondary);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 15px;
    opacity: 0.2;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Team Section */
.team-section {
    position: relative;
}

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

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

[data-theme="dark"] .team-card {
    background: var(--bg-primary);
}

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

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.team-image .image-placeholder {
    height: 100%;
    border: none;
    border-radius: 0;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    padding: 20px 15px 10px;
}

.team-role {
    font-size: 14px;
    color: var(--color-red);
    font-weight: 600;
    padding: 0 15px 20px;
    margin: 0;
}

/* Awards Section */
.awards-section {
    position: relative;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.award-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

[data-theme="dark"] .award-item {
    background: var(--bg-secondary);
}

.award-item:hover {
    border-color: var(--color-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.award-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.award-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.award-year {
    font-size: 14px;
    color: var(--color-red);
    font-weight: 600;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .story-header .section-title {
        font-size: 36px;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero-title {
        font-size: 42px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        height: 50vh;
        margin-top: 0;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .breadcrumbs-list {
        gap: 8px;
    }

    .breadcrumbs-list li {
        font-size: 13px;
        gap: 8px;
    }

    .breadcrumbs-list li:not(:last-child)::after {
        margin-left: 0;
    }

    .about-story {
        padding: 60px 0;
    }

    .story-grid {
        gap: 30px;
    }

    .story-header .section-title {
        font-size: 28px;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-plus {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-card {
        padding: 30px 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 250px;
        height: 50vh;
        padding: 20px;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-subtitle {
        font-size: 14px;
    }

    .breadcrumbs {
        padding: 12px 0;
    }

    .breadcrumbs-list li {
        font-size: 12px;
        gap: 5px;
    }

    .breadcrumbs-list li:not(:last-child)::after {
        margin-left: 0;
    }

    .story-content h2 {
        font-size: 24px;
    }

    .story-paragraph {
        font-size: 14px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-plus {
        font-size: 20px;
    }

    .mission-card {
        padding: 25px 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-number {
        font-size: 36px;
    }

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

    .team-image {
        height: 180px;
    }

    .award-item {
        padding: 25px 15px;
    }
}


/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-hero {
    min-height: 400px;
    height: 50vh;
    padding: 0;
}

.contact-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(52, 52, 51, 0.45) 100%);
}

.contact-hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.contact-hero-meta .meta-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.contact-hero-meta .meta-item strong {
    display: block;
    font-size: 20px;
    margin-top: 6px;
    color: var(--text-primary);
}

.contact-overview {
    padding: 60px 0 30px;
}

.contact-overview .container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-overview-content h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.contact-overview-content p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-panel,
.contact-form-panel {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .contact-info-panel,
[data-theme="dark"] .contact-form-panel {
    background: #1f1f1f;
    box-shadow: var(--shadow-sm);
}

.contact-info-panel h2,
.contact-form-panel h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.panel-description,
.contact-form-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

[data-theme="dark"] .contact-card {
    background: #141414;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    margin: 15px 0 5px;
    font-size: 20px;
}

.contact-card p,
.contact-card span,
.contact-card a {
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-card a {
    display: block;
    margin-top: 6px;
    color: var(--color-red);
    font-weight: 600;
}

.contact-card-group .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(234, 37, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
}

.contact-card-group .card-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

.contact-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(234, 37, 42, 0.05);
    border-radius: 14px;
}

.contact-hours span {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.contact-hours strong,
.contact-hours a {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(234, 37, 42, 0.15);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-secondary);
}

.form-checkbox input {
    margin-top: 4px;
}

.form-disclaimer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-status {
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.form-status.error {
    display: block;
    background: rgba(234, 37, 42, 0.1);
    color: var(--color-red);
    border: 1px solid rgba(234, 37, 42, 0.3);
}

.contact-details {
    padding: 90px 0;
}

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

.detail-card {
    background: var(--bg-primary);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.detail-card:hover {
    transform: translateY(-8px);
}

.detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(234, 37, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-red);
}

.detail-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
}

.detail-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.detail-card p,
.detail-card span {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.detail-card a {
    font-weight: 600;
    color: var(--color-red);
}

.contact-map {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.08), rgba(52, 52, 51, 0.1));
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 360px;
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.map-details {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.map-stats {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.map-stats li strong {
    font-size: 36px;
    color: var(--color-red);
    display: block;
}

.map-stats li span {
    color: var(--text-secondary);
    font-size: 15px;
}

.contact-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-grid details {
    background: var(--bg-secondary);
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid var(--border-color);
}

.faq-grid summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid details[open] summary {
    color: var(--color-red);
}

.faq-grid p {
    margin-top: 12px;
    color: var(--text-secondary);
}

.contact-cta-section {
    background: linear-gradient(120deg, #343433, #1a1a1a);
    color: white;
    padding: 80px 0;
}

.contact-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-cta-content h2 {
    font-size: 36px;
    margin: 12px 0;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-cta-section .btn-white {
    background: white;
    color: var(--color-red);
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-meta {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .contact-overview .container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 30px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 25px;
    }

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

    .contact-card-group {
        grid-template-columns: 1fr;
    }

    .contact-overview-content h2 {
        font-size: 28px;
    }

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

    .contact-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-meta {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .contact-hero-cta {
        flex-direction: column;
    }

    .contact-overview {
        padding: 40px 0 20px;
    }

    .contact-info-panel h2,
    .contact-form-panel h2 {
        font-size: 28px;
    }
}

.contact-info {
    padding: 100px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

[data-theme="dark"] .contact-info-card {
    background: var(--bg-secondary);
    border-color: rgba(255, 255, 255, 0.08);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(234, 37, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
}

.contact-info-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.contact-info-card h3 {
    font-size: 20px;
    margin: 6px 0;
}

.contact-info-card .card-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
}

.contact-info-card .card-links a {
    color: var(--color-red);
}

.contact-info-card.highlighted {
    background: linear-gradient(135deg, rgba(234, 37, 42, 0.95), rgba(234, 37, 42, 0.7));
    color: white;
    border: none;
    box-shadow: 0 20px 45px rgba(234, 37, 42, 0.35);
}

.contact-info-card.highlighted .card-links a {
    color: white;
}

.contact-connect {
    padding: 80px 0;
}

.contact-connect-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: flex-start;
}

.contact-form {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(234, 37, 42, 0.1);
}

[data-theme="dark"] .contact-form {
    background: var(--bg-secondary);
    border-color: rgba(234, 37, 42, 0.3);
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    background: var(--color-white);
    color: var(--text-primary);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
    background: var(--bg-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(234, 37, 42, 0.15);
}

.contact-form .two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form .btn {
    width: fit-content;
}

.contact-office-card {
    background: var(--bg-secondary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.office-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.office-list li span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.office-list li a,
.office-list li p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 6px;
}

.contact-map {
    padding: 90px 0;
    background: radial-gradient(circle at top, rgba(234, 37, 42, 0.12), transparent);
}

.map-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .map-card {
    background: var(--bg-secondary);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 360px;
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.contact-cta {
    background: linear-gradient(135deg, #343433 0%, #1a1a1a 100%);
    color: white;
    padding: 110px 0;
    text-align: center;
}

.contact-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-cta .btn-outline {
    border-color: white;
    color: white;
}

.contact-cta .btn-outline:hover {
    background: white;
    color: var(--color-red);
}

@media (max-width: 1200px) {
    .contact-connect-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .map-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .contact-form,
    .contact-office-card {
        padding: 28px;
    }

    .contact-form .two-col {
        grid-template-columns: 1fr;
    }

    .contact-cta .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 24px;
    }

    .map-card {
        padding: 28px;
    }
}