:root {
    --primary-color: #2B4570;
    --secondary-color: #7180AC;
    --accent-color: #E37222;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main_menu {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.nav-wrapper {
    display: flex;
    gap: 30px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .hamburger {
        width: 30px;
        height: 3px;
        background: var(--text-color);
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background: var(--text-color);
        transition: all 0.3s ease;
    }

    .hamburger:before {
        top: -8px;
    }

    .hamburger:after {
        top: 8px;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }
}

/* Base Styles and Variables */
:root {
    --primary-color: #2B4570;
    --secondary-color: #7180AC;
    --accent-color: #E37222;
    --accent-hover: #c45e15;
    --text-color: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F5F7FA;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #FF5252;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --max-width: 1200px;
    --header-height: 80px;
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

h1 {
    font-size: 4.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.6rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header and Navigation */
.main_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transition: transform var(--transition-speed);
}

.main_menu.hidden {
    transform: translateY(-100%);
}

.navbar {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color var(--transition-speed);
}

.navbar-brand:hover {
    color: var(--accent-color);
}

.nav-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all var(--transition-speed);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 6rem) 0 6rem;
    background: var(--gradient-primary);
    color: var(--background);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero.webp') center/cover no-repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 2.4rem;
    animation: fadeInUp 1s ease-out;
    color: #fff;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--background-alt);
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--background);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--box-shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* About Section */
.about-content {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    padding-right: 4rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.expertise-item {
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.expertise-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--box-shadow);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--background-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info {
    padding: 4rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--background);
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.footer-links h3 {
    color: var(--background);
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--background);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Privacy and Cookies Pages */
.privacy-content,
.cookies-content {
    padding: 8rem 0;
}

.content-block {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.privacy-section,
.cookies-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.privacy-section:hover,
.cookies-section:hover {
    transform: translateX(1rem);
    box-shadow: var(--box-shadow);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* Responsive Design */
@media screen and (max-width: 1200px) {
    html {
        font-size: 60%;
    }
}

@media screen and (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 58%;
    }

    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 1.5rem;
        z-index: 2;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        width: 3rem;
        height: 0.3rem;
        background: var(--text-color);
        position: absolute;
        transition: all var(--transition-speed);
    }

    .hamburger::before {
        content: '';
        top: -0.8rem;
    }

    .hamburger::after {
        content: '';
        top: 0.8rem;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
        transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        transition: all var(--transition-speed);
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
        opacity: 1;
    }

    .nav-item {
        margin: 2rem 0;
    }

    .nav-link {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero p {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 56%;
    }

    .container {
        padding: 0 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 2rem;
    }
}

/* Interactive Elements */
.service-card,
.expertise-item,
.nav-link,
.footer-links a {
    cursor: pointer;
    will-change: transform;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3rem;
    background: var(--gradient-primary);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s ease-out;
    z-index: 1001;
}

/* Custom Scrollbar (continued) */
::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
}

::-webkit-scrollbar-track {
    background: var(--background-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Card Hover Effects */
.hover-card {
    position: relative;
    transition: all var(--transition-speed);
}

.hover-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: all var(--transition-speed);
}

.hover-card:hover::after {
    opacity: 0.1;
    transform: scale(1.05);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background);
}

/* Grid Layout Enhancements */
.grid {
    display: grid;
    gap: 3rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Card Styles */
.card {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 2.4rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.6rem;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Section Transitions */
.section-transition {
    position: relative;
    padding: 8rem 0;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background: linear-gradient(to bottom, var(--background-alt), transparent);
}

/* Interactive Service Cards */
.service-card-interactive {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card-interactive::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: all 0.6s ease;
}

.service-card-interactive:hover::before {
    top: 100%;
    left: 100%;
}

/* Text Gradients */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Enhanced Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-wrapper {
        padding: 2rem;
        align-items: flex-start;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(2rem);
        transition: all var(--transition-speed);
    }

    .nav-toggle:checked ~ .nav-wrapper .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-toggle:checked ~ .nav-wrapper .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-toggle:checked ~ .nav-wrapper .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-toggle:checked ~ .nav-wrapper .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }
}

/* Footer Enhancements */
.footer-wave {
    position: relative;
    overflow: hidden;
}

.footer-wave::before {
    content: '';
    position: absolute;
    top: -5rem;
    left: 0;
    width: 100%;
    height: 5rem;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Custom Focus Styles */
:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--background);
    padding: 1rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1002;
}

.skip-to-content:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .main_menu,
    .footer,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Unique Sections Styling */
.statistics-wave {
    position: relative;
    background: var(--primary-color);
    padding: 12rem 0;
    overflow: hidden;
}

.statistics-wave::before,
.statistics-wave::after {
    content: '';
    position: absolute;
    left: 0;
    width: 200%;
    height: 12rem;
    background-repeat: repeat-x;
    animation: waveAnimation 20s linear infinite;
}

.statistics-wave::before {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
}

.statistics-wave::after {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M321.39 56.44c58-10.79 114.16-30.13 172-41.86 82.39-16.72 168.19-17.73 250.45-.39C823.78 31 906.67 72 985.66 92.83c70.05 18.48 146.53 26.09 214.34 3V0H0v27.35a600.21 600.21 0 00321.39 29.09z' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
    transform: rotate(180deg);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: var(--background);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Process Timeline Section */
.process-timeline {
    position: relative;
    padding: 8rem 0;
    background: var(--background-alt);
}

.timeline {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.4rem;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 6rem;
    width: calc(50% - 4rem);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: calc(50% + 4rem);
}

.timeline-content {
    position: relative;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -6rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -6rem;
}

/* Marketing Services Showcase */
.services-showcase {
    padding: 8rem 0;
    background: var(--background);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    position: relative;
}

.showcase-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    position: relative;
    z-index: 1;
}

.service-tabs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-tab {
    padding: 2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-tab:hover {
    border-left-color: var(--accent-color);
    transform: translateX(1rem);
}

/* Floating Elements Animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        width: calc(100% - 4rem);
        margin-left: 4rem;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-content::before {
        left: -5rem !important;
    }
}

@media screen and (max-width: 576px) {
    .stat-card {
        margin-bottom: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

/* Floating Cards Section */
.success-stories {
    position: relative;
    padding: 12rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 20%),
            radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 20%);
    pointer-events: none;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    perspective: 1000px;
}

.success-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: var(--background);
    transform-style: preserve-3d;
    transform: translateZ(0);
    transition: all 0.5s ease;
}

.success-card:hover {
    transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
    box-shadow:
            0 15px 35px rgba(0,0,0,0.2),
            0 5px 15px rgba(0,0,0,0.1);
}

.success-number {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
}

.success-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

/* Marketing Strategy Grid */
.strategy-grid {
    position: relative;
    padding: 10rem 0;
    background: var(--background-alt);
}

.strategy-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    align-items: center;
}

.strategy-content {
    position: relative;
}

.strategy-steps {
    position: relative;
    padding-left: 4rem;
}

.strategy-step {
    position: relative;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    transform-origin: left;
    transition: all 0.4s ease;
}

.strategy-step::before {
    content: '';
    position: absolute;
    left: -4rem;
    top: 50%;
    width: 3rem;
    height: 0.3rem;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.strategy-step::after {
    content: '';
    position: absolute;
    left: -4.8rem;
    top: 50%;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.strategy-step:hover {
    transform: translateX(2rem);
    box-shadow: var(--box-shadow);
}

.strategy-step:hover::before {
    transform: scaleX(1);
}

.strategy-number {
    position: absolute;
    top: -2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 800;
    opacity: 0.1;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.strategy-step:hover .strategy-number {
    opacity: 0.2;
    transform: scale(1.1);
}

.strategy-visual {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.strategy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(var(--primary-color-rgb), 0.2),
    rgba(var(--accent-color-rgb), 0.2));
}

@media screen and (max-width: 992px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .strategy-visual {
        order: -1;
    }
}

@media screen and (max-width: 576px) {
    .success-grid {
        grid-template-columns: 1fr;
    }

    .strategy-step {
        padding: 2rem;
    }

    .strategy-number {
        font-size: 6rem;
    }
}

/* About Page Specific Styles */
.about-hero {
    position: relative;
    padding: calc(var(--header-height) + 6rem) 0 6rem;
    background: var(--gradient-primary);
    color: var(--background);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 20%);
    pointer-events: none;
}

.mission-section {
    position: relative;
    padding: 10rem 0;
    background: var(--background-alt);
}

.mission-content {
    position: relative;
    z-index: 2;
}

.value-card {
    position: relative;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 0.4rem;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--box-shadow-hover);
}

.value-card:hover::before {
    left: 0;
}

.team-section {
    padding: 10rem 0;
    background: var(--background);
}

.team-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    margin: 4rem 0;
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image-container:hover img {
    transform: scale(1.05);
}

.team-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            transparent,
            rgba(43, 69, 112, 0.8)
    );
}

.expertise-section {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--background-alt), var(--background));
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.expertise-card {
    position: relative;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.expertise-card:hover {
    border-left-color: var(--accent-color);
    transform: translateX(1rem);
}

.number-badge {
    position: absolute;
    top: -2rem;
    right: 2rem;
    font-size: 8rem;
    font-weight: 800;
    opacity: 0.1;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.expertise-card:hover .number-badge {
    opacity: 0.2;
    transform: scale(1.1);
}

@media screen and (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    position: relative;
    padding: calc(var(--header-height) + 6rem) 0 6rem;
    background: var(--gradient-primary);
    color: var(--background);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
}

.contact-section {
    padding: 8rem 0;
    background: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-card {
    background: var(--background);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-item {
    margin-bottom: 3rem;
    padding-left: 4rem;
    position: relative;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.info-item:hover::before {
    transform: scale(1.1);
    opacity: 0.2;
}

/* Form Styles */
.contact-form {
    background: var(--background);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background: var(--gradient-primary);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--background-alt);
    border-radius: var(--border-radius);
    background: var(--background);
    color: var(--text-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 114, 34, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--secondary-color);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.6rem;
    padding-right: 4rem;
}

.form-textarea {
    min-height: 15rem;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--gradient-primary);
    color: var(--background);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
    );
    transition: all 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0;
}

.thank-you-content {
    max-width: 60rem;
    margin: 0 auto;
}

.checkmark {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: var(--success-color);
    margin: 0 auto 3rem;
    position: relative;
    animation: scaleIn 0.5s ease-out;
}

.checkmark::before,
.checkmark::after {
    content: '';
    position: absolute;
    background: white;
}

.checkmark::before {
    width: 3rem;
    height: 0.6rem;
    transform: rotate(45deg);
    left: 1.7rem;
    top: 3.5rem;
}

.checkmark::after {
    width: 1.5rem;
    height: 0.6rem;
    transform: rotate(-45deg);
    left: 1.2rem;
    top: 3.2rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-form,
    .contact-info-card {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 2rem;
    }
}

/* Cookie Disclaimer Styles */
.cookie-disclaimer {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--background);
    padding: 2rem 0;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    animation: slideIn 0.5s ease-out forwards;
}

.cookie-disclaimer.show {
    bottom: 0;
}

@keyframes slideIn {
    to { bottom: 0; }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
}

.cookie-button {
    background: var(--background);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.cookie-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thank-you-content {
        padding: 2rem;
    }
}