/* ===================================
   SafeSpec Ltd - Professional Website
   =================================== */

/* CSS Variables */
:root {
    --color-primary: #0066cc;
    --color-primary-dark: #004a99;
    --color-secondary: #ff9500;
    --color-dark: #0a1628;
    --color-navy: #1a2332;
    --color-gray: #64748b;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-accent: #fbbf24;

    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Georgia', serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

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

.logo-safe {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.logo-spec {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -1px;
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(100, 116, 139, 0.3);
    line-height: 1;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-dark);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 0.875rem 2rem;
}

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

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2847 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../SafeSpecLTDImages/IMG-20250928-WA0034.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 149, 0, 0.2);
    color: var(--color-secondary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 580px;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    max-width: 480px;
}

.hero-map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.europe-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
    animation: mapFade 30s ease-in-out infinite;
}

@keyframes mapFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.form-header {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.75rem;
    line-height: 1.3;
    text-align: center;
}

/* Inquiry Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    margin: 0;
}

.form-group input {
    width: 100%;
    padding: 1.25rem 1.75rem;
    font-size: 1.125rem;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.15);
    transform: translateY(-1px);
}

.btn-inquire {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-navy) 100%);
    color: var(--color-white);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.25);
}

.btn-inquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.35);
}

/* ===================================
   TRUSTED BY SECTION
   =================================== */

.trusted-by-section {
    padding: 4rem 2rem;
    background: var(--color-white);
    overflow: hidden;
}

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

.trusted-by-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

.logo-scroll {
    display: flex;
    gap: 4rem;
    width: fit-content;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.company-logo {
    height: 78px;
    width: auto;
    max-width: 195px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.company-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 6rem 2rem;
    background: #fafaf8;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-block.reverse {
    direction: rtl;
}

.about-block.reverse > * {
    direction: ltr;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
    margin-bottom: 0;
}


/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2847 100%);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    color: var(--color-white);
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 149, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.contact-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.contact-text p,
.contact-text a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--color-secondary);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.btn-contact {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e68a00 100%);
    color: var(--color-navy);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.4);
    background: linear-gradient(135deg, #e68a00 0%, var(--color-secondary) 100%);
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.7;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.team-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent);
    pointer-events: none;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.team-card > *:not(.team-image) {
    padding: 0 2rem;
}

.team-sector {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0d1520;
    color: var(--color-white);
}

.footer-main {
    padding: 5rem 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 380px;
}

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

.footer-logo .logo-safe {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.footer-logo .logo-spec {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -1px;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-col ul li {
    margin-bottom: 0.875rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-secondary);
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.contact-list a,
.contact-list span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-list a:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: 0.875rem;
    margin-top: 2rem;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 2rem;
    background: #070b12;
}

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

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.8); }
}

.hero-title-main {
    font-size: 1.375em;
}

.typing-text {
    display: inline-block;
    padding-right: 4px;
    font-size: 0.65em;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .service-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .logo {
        flex-wrap: wrap;
    }

    .logo-safe,
    .logo-spec {
        font-size: 1.5rem;
    }

    .logo-tagline {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-white);
        flex-direction: column;
        padding: 3rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-background {
        background-position: -200px center;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .hero-form-container {
        padding: 2rem 1.75rem;
        max-width: 100%;
    }

    .hero-map-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .europe-map {
        width: 130%;
        max-width: none;
        margin-left: -15%;
    }

    .form-header {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group input {
        padding: 1.125rem 1.5rem;
        font-size: 1.0625rem;
    }

    .btn-inquire {
        padding: 1.125rem 1.75rem;
        font-size: 1.0625rem;
    }

    .about-container {
        gap: 4rem;
    }

    .about-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-block.reverse {
        direction: ltr;
    }

    .about-image {
        height: 300px;
    }

    .about-content h2 {
        font-size: 2.25rem;
    }

    .services-header-inline h2 {
        font-size: 1.5rem;
    }

    .separator-icon {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 3rem;
    }

    .service-subtitle {
        font-size: 1.125rem;
        letter-spacing: 2px;
    }

    .service-description {
        font-size: 1.0625rem;
    }

    .carousel-nav {
        gap: 2rem;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: 2.25rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

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

    .section-header h2 {
        font-size: 2.25rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

}

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

    .service-title {
        font-size: 2.25rem;
    }

    .service-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

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

    .service-content {
        padding: 2rem 1.5rem;
    }

    .carousel-nav {
        gap: 1.5rem;
        bottom: 2rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-main {
        padding: 3rem 2rem 2rem;
    }
}/* Services Section - Card Layout */
.services-section {
    padding: 6rem 2rem;
    background: var(--color-dark);
}

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

.services-header-main h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.separator-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 400px;
}

.separator-line::before,
.separator-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.separator-icon {
    font-size: 2rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.service-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-text {
    color: var(--color-white);
}

.service-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.service-text .service-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .services-header-main h2 {
        font-size: 2rem;
    }

    .services-grid {
        gap: 3rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-image-card {
        height: 300px;
    }

    .service-text h3 {
        font-size: 2rem;
    }

    .service-text .service-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   DATACENTER SECTION
   =================================== */

.datacenter-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a2847 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.datacenter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(0, 102, 204, 0.03) 49%, rgba(0, 102, 204, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 102, 204, 0.03) 49%, rgba(0, 102, 204, 0.03) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.datacenter-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.datacenter-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.datacenter-intro {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto 4rem;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.datacenter-text {
    color: var(--color-white);
}

.datacenter-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.datacenter-text h3:first-child {
    margin-top: 0;
}

.datacenter-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.datacenter-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    height: 600px;
}

.datacenter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.datacenter-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 70%, transparent 100%);
    padding: 2.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .datacenter-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .datacenter-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .datacenter-content h2 {
        font-size: 2.25rem;
    }

    .datacenter-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .datacenter-text h3 {
        font-size: 1.5rem;
    }

    .datacenter-text p {
        font-size: 1rem;
    }

    .datacenter-image {
        height: 400px;
    }

    .datacenter-stats {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .datacenter-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .datacenter-image {
        height: 300px;
    }
}

/* ===================================
   LOOKING FOR WORK SECTION
   =================================== */

.looking-for-work-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a1628 0%, #1a2847 100%);
}

.looking-for-work-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.looking-for-work-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.looking-for-work-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.looking-for-work-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.looking-for-work-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.btn-careers {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e68a00 100%);
    color: var(--color-navy);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.3);
}

.btn-careers:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.4);
}

/* ===================================
   INTERVIEW TEAM SECTION
   =================================== */

.interview-team-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

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

.interview-team-container h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.interview-team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.interview-team-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.interview-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.interview-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
}

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

.sector-badge {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 181, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
    margin: 1rem auto;
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
    color: #0077B5;
    transition: var(--transition-smooth);
}

.linkedin-link:hover {
    background: #0077B5;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link:hover svg {
    color: var(--color-white);
}

.interview-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.position-subtitle {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.qualifications-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.qualifications-list li:last-child {
    border-bottom: none;
}

.qualifications-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .interview-team-container h2 {
        font-size: 2.25rem;
    }

    .interview-team-intro p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .interview-team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interview-card {
        padding: 2rem;
    }

    .interview-card h3 {
        font-size: 1.5rem;
    }

    .sector-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .linkedin-link {
        width: 36px;
        height: 36px;
    }

    .linkedin-link svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   CAREERS PAGE
   =================================== */

.careers-hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2847 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

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

.careers-hero-container h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.careers-hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* CV Upload Section */
.cv-upload-section {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.cv-upload-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cv-upload-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.cv-upload-info > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* CV Upload Form */
.cv-upload-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.cv-upload-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cv-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cv-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.cv-form input,
.cv-form textarea {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.cv-form input:focus,
.cv-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.cv-form input[type="file"] {
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.file-help {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-style: italic;
}

.btn-submit-cv {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    margin-top: 1rem;
}

.btn-submit-cv:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 1024px) {
    .cv-upload-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .looking-for-work-content h2 {
        font-size: 2.25rem;
    }

    .looking-for-work-intro {
        font-size: 1.125rem;
    }

    .looking-for-work-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .careers-hero-container h1 {
        font-size: 3rem;
    }

    .careers-hero-description {
        font-size: 1.25rem;
    }

    .cv-upload-info h2 {
        font-size: 2rem;
    }

    .cv-upload-form-wrapper {
        padding: 2rem;
    }

    .cv-upload-form-wrapper h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .careers-hero-container h1 {
        font-size: 2.25rem;
    }

    .careers-hero-description {
        font-size: 1.125rem;
    }

    .cv-upload-form-wrapper {
        padding: 1.5rem;
    }
}