:root {
    --primary-color: #0f4c81;
    --secondary-color: #1e88e5;
    --dark-color: #0a1628;
    --light-color: #f8fafс;
    --text-color: #1a2332;
    --text-light: #546e7a;
    --accent-color: #00bcd4;
    --success-color: #26a69a;
    --gradient: linear-gradient(135deg, #0f4c81 0%, #1e88e5 100%);
    --gradient-2: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    --gradient-text: linear-gradient(135deg, #1e88e5 0%, #00bcd4 100%);
    --shadow: 0 4px 20px rgba(15, 76, 129, 0.06);
    --shadow-lg: 0 20px 60px rgba(15, 76, 129, 0.1);
    --shadow-xl: 0 30px 80px rgba(15, 76, 129, 0.15);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
    padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Background Shapes */
.background-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 24px 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.navbar.scrolled .logo {
    color: var(--dark-color);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Desktop nav menu */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 48px;
        align-items: center;
        position: fixed;
        top: 24px;
        right: 24px;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        padding: 0;
        transition: none;
        box-shadow: none;
        z-index: 1001;
        overflow-y: visible;
        margin: 0;
    }
    
    .menu-overlay {
        display: none !important;
    }
}

/* Mobile nav menu - hidden by default */
.nav-menu {
    display: none;
}

.menu-overlay {
    display: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.navbar.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.navbar.scrolled .hamburger {
    background: rgba(15, 76, 129, 0.1);
}

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

.navbar.scrolled .hamburger:hover {
    background: rgba(15, 76, 129, 0.15);
}

.hamburger.active {
    background: rgba(15, 76, 129, 0.15);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #26a69a;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.title-line {
    display: block;
}

.highlight-text {
    background: linear-gradient(135deg, #fff 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.stat-mini {
    text-align: center;
}

.stat-mini strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 4px;
}

.stat-mini span {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 500;
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(0, 188, 212, 0.08));
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(30, 136, 229, 0.1);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(15, 76, 129, 0.08);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(15, 76, 129, 0.04);
    line-height: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 136, 229, 0.2);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 32px rgba(15, 76, 129, 0.3);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

/* Portfolio Section */
.portfolio {
    background: var(--light-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 76, 129, 0.06);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 136, 229, 0.15);
}

.portfolio-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.08);
}

.portfolio-placeholder i {
    font-size: 80px;
    color: white;
    opacity: 0.9;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    transform: scale(1.1) rotate(5deg);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.portfolio-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: var(--dark-color);
    font-weight: 700;
}

.portfolio-year {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    padding: 4px 12px;
    background: var(--light-color);
    border-radius: 20px;
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(0, 188, 212, 0.08));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(30, 136, 229, 0.15);
}

/* About Section */
.about {
    background: white;
}

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

.about-text {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 1.05rem;
}

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

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
}

.about-image-wrapper {
    position: relative;
    height: 560px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-wrapper:hover .about-image-img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(15, 76, 129, 0.06);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(4px);
    border-color: rgba(30, 136, 229, 0.2);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: white;
}

.contact-info-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(15, 76, 129, 0.06);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.form-message {
    display: none;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background: rgba(38, 166, 154, 0.1);
    color: #26a69a;
    border: 1px solid rgba(38, 166, 154, 0.2);
}

.form-message-error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.form-message-info {
    background: rgba(30, 136, 229, 0.1);
    color: #1e88e5;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 16px;
    font-size: 13px;
    background: white;
    padding: 2px 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Checkbox Group */
.privacy-notice {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
    padding: 12px;
    background: var(--light-color);
    border-radius: 8px;
}

.checkbox-text {
    display: inline;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
    padding: 2px 4px;
    margin: 0 2px;
}

.privacy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}


#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.btn-loader {
    margin-left: 8px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}


.footer-col p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 14px 24px;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

/* Responsive */
@media (max-width: 968px) {
    .background-shapes {
        opacity: 0.8;
    }

    .shape {
        filter: blur(60px);
    }

    .shape-1 {
        width: 300px;
        height: 300px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
    }

    .navbar {
        padding: 16px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .nav-wrapper {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        gap: 12px;
    }

    .logo {
        font-size: 20px;
        flex-shrink: 0;
        margin-right: auto;
        max-width: calc(100% - 60px);
    }

    .logo span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-image {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
        padding: 8px;
    }
    
    /* Show mobile menu */
    .nav-menu {
        display: flex !important;
        list-style: none;
    }
    
    /* Show mobile menu overlay */
    .menu-overlay {
        display: block;
    }

    /* Mobile menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        width: 100vw;
        height: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: 100vh;
        min-height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        display: none;
        margin: 0;
        padding: 0;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        min-height: -webkit-fill-available; /* iOS Safari fix */
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 32px 40px;
        padding-top: max(100px, env(safe-area-inset-top, 0px) + 100px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 30px rgba(15, 76, 129, 0.15);
        gap: 8px;
        z-index: 1002;
        overflow-y: auto;
        margin: 0;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

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

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

    .nav-link {
        color: var(--text-color);
        font-size: 17px;
        font-weight: 600;
        padding: 16px 20px;
        border-radius: 12px;
        display: block;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--gradient);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background: rgba(15, 76, 129, 0.08);
        transform: translateX(5px);
        color: var(--primary-color);
    }

    .nav-link:hover::before,
    .nav-link:active::before {
        transform: scaleY(1);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 40px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        padding: 0 20px;
    }

    .stat-mini {
        flex: 0 0 auto;
    }

    .stat-mini strong {
        font-size: 1.75rem;
    }

    .stat-mini span {
        font-size: 12px;
    }

    .stat-separator {
        width: 1px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
    }

    .hero-scroll {
        bottom: 24px;
    }

    .scroll-indicator {
        width: 24px;
        height: 40px;
    }

    section {
        padding: 80px 0;
    }

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

    .section-label {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.2rem);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.05rem);
        line-height: 1.7;
        padding: 0 10px;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    .service-number {
        font-size: 3rem;
        top: 16px;
        right: 20px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 36px;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 13px;
    }

    .contact-info-item {
        padding: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

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

    .contact-icon i {
        font-size: 20px;
    }

    .contact-info-item h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .contact-info-item p {
        font-size: 14px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .form-group label {
        font-size: 14px;
        left: 18px;
        top: 14px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-logo .logo-image {
        width: 28px;
        height: 28px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-col p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 14px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .nav-wrapper {
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        gap: 8px;
    }

    .logo {
        font-size: 18px;
        flex-shrink: 0;
        margin-right: auto;
        max-width: calc(100% - 55px);
    }

    .logo-image {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .hamburger {
        padding: 8px;
        margin-left: 8px;
        flex-shrink: 0;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .nav-menu {
        max-width: 280px;
        padding: 90px 24px 32px;
        gap: 24px;
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 0;
    }

    .background-shapes {
        opacity: 0.6;
    }

    .shape {
        filter: blur(50px);
    }

    .shape-1 {
        width: 250px;
        height: 250px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-image {
        width: 24px;
        height: 24px;
    }

    .hamburger {
        padding: 8px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.2rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.05rem);
        margin-bottom: 32px;
        padding: 0;
    }

    .hero-buttons {
        gap: 10px;
        padding: 0;
    }

    .btn {
        padding: 13px 24px;
        font-size: 14px;
        border-radius: 10px;
    }

    .hero-stats {
        gap: 20px;
        padding: 0 10px;
    }

    .stat-mini strong {
        font-size: 1.5rem;
    }

    .stat-mini span {
        font-size: 11px;
    }

    .stat-separator {
        height: 28px;
    }

    .hero-scroll {
        bottom: 20px;
    }

    .scroll-indicator {
        width: 20px;
        height: 32px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 14px;
    }

    .section-title {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-number {
        font-size: 2.5rem;
        top: 12px;
        right: 16px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-image {
        height: 240px;
    }

    .portfolio-placeholder i {
        font-size: 60px;
    }

    .portfolio-content {
        padding: 24px 20px;
    }

    .portfolio-content h3 {
        font-size: 1.15rem;
    }

    .portfolio-year {
        font-size: 12px;
        padding: 3px 10px;
    }

    .portfolio-content p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .portfolio-tags span {
        font-size: 11px;
        padding: 5px 12px;
    }

    .about-grid,
    .contact-grid {
        gap: 40px;
    }

    .about-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .about-image-wrapper {
        height: 320px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .stat-item {
        padding: 24px 20px;
    }

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

    .stat-item p {
        font-size: 12px;
    }

    .contact-info-item {
        padding: 18px;
        margin-bottom: 16px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-info-item h4 {
        font-size: 0.95rem;
    }

    .contact-info-item p {
        font-size: 13px;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .form-group label {
        font-size: 13px;
        left: 16px;
        top: 13px;
    }

    .privacy-notice {
        font-size: 11px;
        padding: 10px;
        margin-bottom: 18px;
    }

    .footer-grid {
        gap: 32px;
        margin-bottom: 40px;
    }

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

    .footer-logo .logo-image {
        width: 24px;
        height: 24px;
    }

    .footer-col p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .newsletter-form {
        gap: 8px;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 13px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 24px;
        font-size: 12px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(15, 76, 129, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.cookie-text i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept {
    background: var(--gradient);
    color: white;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid rgba(15, 76, 129, 0.2);
}

.btn-cookie-decline:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
}

/* Privacy Policy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10001;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.privacy-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(15, 76, 129, 0.1);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.privacy-modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    color: var(--dark-color);
    margin: 0;
}

.privacy-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.privacy-modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.privacy-modal-body {
    padding: 32px;
}

.privacy-modal-body h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-modal-body h3:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-modal-body ul {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-modal-body li {
    margin-bottom: 8px;
}

.privacy-date {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 76, 129, 0.1);
    font-size: 13px;
    color: var(--text-light);
}

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

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

/* Thank You Page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.02) 0%, rgba(30, 136, 229, 0.02) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease;
}

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

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.2);
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-icon i {
    font-size: 60px;
    color: white;
}

.thank-you-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.thank-you-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding: 32px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-color);
}

.info-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.15);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 0 60px;
    }

    .thank-you-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

    .thank-you-icon i {
        font-size: 50px;
    }

    .thank-you-text {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .thank-you-info {
        padding: 24px;
        margin-bottom: 32px;
    }

    .info-item {
        font-size: 14px;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}

/* Mobile Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px;
        z-index: 10001;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-text {
        margin-bottom: 0;
        flex-direction: row;
        align-items: flex-start;
    }

    .cookie-text i {
        font-size: 20px;
        margin-top: 0;
    }

    .cookie-text p {
        font-size: 13px;
        line-height: 1.5;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }

    .btn-cookie {
        flex: 1;
        padding: 14px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    .privacy-link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(15, 76, 129, 0.2);
        padding: 2px 4px;
        margin: 0 2px;
        min-height: 24px;
        min-width: 44px;
    }

    .privacy-modal-content {
        max-height: 95vh;
        margin: 10px;
    }

    .privacy-modal-header {
        padding: 20px;
    }

    .privacy-modal-header h2 {
        font-size: 1.5rem;
    }

    .privacy-modal-body {
        padding: 24px 20px;
    }

    .privacy-modal-body h3 {
        font-size: 1.1rem;
    }

    .privacy-modal-body p,
    .privacy-modal-body ul {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 14px;
    }

    .cookie-text {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-text i {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 12px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-cookie {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
    }

    .privacy-link {
        min-height: 24px;
        min-width: 44px;
    }
}
