/* Font Face Declarations */
@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('Fonts/Aktiv Grotesk/TTF/AktivGrotesk-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('Fonts/Aktiv Grotesk/TTF/AktivGrotesk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Mono';
    src: url('Fonts/RobotoMono-VariableFont_wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-blue: #3c54a4;
    --off-white: #E2DBD6;
    --orange: #3c54a4;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    
    /* Typography */
    --font-primary: 'Aktiv Grotesk', sans-serif;
    --font-body: 'Roboto Mono', monospace;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 8px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-blue);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    object-fit: cover;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(60, 84, 164, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: var(--primary-blue) url('Assets/hero video design.gif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    overflow: hidden;
}


.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    max-width: clamp(300px, 50vw, 600px);
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--orange);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-blue);
    margin-bottom: 40px;
    line-height: 1.2;
}

.tagline-line {
    display: block;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-blue);
    text-align: center;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: var(--primary-blue);
}

.services-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 600px;
}

.services-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.services-left .service-card {
    flex: 1;
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    justify-content: flex-end;
}

.services-right .service-card:first-child {
    flex: 0 0 auto;
}

.services-right .process-card {
    flex: 0 0 auto;
}

.service-card {
    background: transparent;
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--off-white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--off-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-title {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 24px;
    color: var(--off-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-blue);
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--off-white);
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--primary-blue);
}

.process-card {
    grid-column: span 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    padding: 15px;
    background: rgba(226, 219, 214, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
    transition: background 0.3s ease;
}

.service-card:hover .process-step {
    background: rgba(60, 84, 164, 0.1);
}

.step-title {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 16px;
    color: var(--off-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.service-card:hover .step-title {
    color: var(--primary-blue);
}

.step-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--off-white);
    transition: color 0.3s ease;
}

.service-card:hover .step-description {
    color: var(--primary-blue);
}

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

.testimonials-title {
    color: var(--primary-blue);
    text-align: left;
    margin-bottom: 60px;
    font-size: clamp(2rem, 4vw, 3rem);
}

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

.testimonial-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card.featured {
    background: var(--primary-blue);
    color: var(--white);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    margin-right: 15px;
    flex-shrink: 0;
}

.profile-icon.white {
    background: var(--white);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

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

.reviewer-title {
    font-size: 14px;
    color: var(--primary-blue);
    margin-bottom: 2px;
}

.reviewer-company {
    font-size: 14px;
    color: var(--primary-blue);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-headline {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 16px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-blue);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 18px;
}


/* Footer */
.footer {
    background: var(--primary-blue);
    padding: 60px 0;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-catalog {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

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

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--orange);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.footer-contact-title {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.footer-phone,
.footer-email {
    color: var(--white);
    font-size: 16px;
    margin: 0;
}

/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .services-left,
    .services-right {
        gap: 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .testimonial-card {
        padding: 20px;
    }

    .visual-element {
        width: 200px;
        height: 200px;
    }

    .outer-circle {
        width: 180px;
        height: 180px;
    }

    .inner-circle {
        width: 120px;
        height: 120px;
    }

    .center-square {
        width: 50px;
        height: 50px;
    }
}

/* Additional Modern Effects */
.service-card,
.testimonial-card {
    backdrop-filter: blur(10px);
}

.hero-overlay {
    backdrop-filter: blur(2px);
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.cta-button:focus,
.nav-link:focus {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .testimonial-card {
        border: 2px solid var(--dark-gray);
    }
}
