:root {
    --red: #C41E3A;
    --red-dark: #9A1830;
    --blue: #1A365D;
    --blue-dark: #0F2342;
    --white: #FFFFFF;
    --cream: #FDF8F5;
    --gray: #6B7280;
    --black: #0A0A0A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--black);
    overflow-x: hidden;
}

/* Custom Cursor */

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, background 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(2);
    background: var(--red);
}

/* Loader */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader.hide {
    transform: translateY(-100%);
}

.loader-logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--white);
    width: 0;
    animation: load 2s ease forwards;
}

@keyframes load {
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Navigation */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 150px;
    height: 50px;
    overflow: hidden;
}

.logo img {
    height: 176px;
    width: 130%;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}

/* Mobile Menu Toggle */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Burger animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
    background-size: 60px;
    animation: rotate 60s linear infinite;
}

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

.paint-drip {
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 200px;
    height: 400px;
    background: var(--blue);
    border-radius: 100px 100px 0 0;
    animation: drip 3s ease-in-out infinite;
}

@keyframes drip {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s ease infinite;
}

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

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero h1 span {
    color: var(--red);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
    opacity: 0.2;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--black);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1.3s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

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

/* Floating Elements */

.floating-brush {
    position: absolute;
    right: 10%;
    top: 30%;
    width: 150px;
    height: 150px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.floating-brush svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* About Section */

.about {
    padding: 150px 60px;
    background: var(--white);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.2;
}

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

.about-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.about-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
}

/* Services Section */

.services {
    padding: 150px 60px;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: 'ALEM';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    white-space: nowrap;
}

.services .section-title {
    color: var(--white);
}

.services .section-tag {
    background: rgba(255, 255, 255, 0.1);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.2);
}

.service-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.service-price span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Partners Section */

.partners {
    padding: 150px 60px;
    background: var(--white);
    position: relative;
}

.partners .section-desc {
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

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

.partner-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 50px 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.partner-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.partner-card:nth-child(2) .partner-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.partner-card:nth-child(3) .partner-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.partner-card:hover .partner-icon {
    transform: scale(1.1) rotate(5deg);
}

.partner-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.partner-card>p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.partner-list {
    list-style: none;
}

.partner-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-list li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Geography Section */

.geography {
    padding: 150px 60px;
    background: var(--blue-dark);
    position: relative;
    overflow: hidden;
}

.geography::before {
    content: 'СНГ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.geography .section-title {
    color: var(--white);
}

.geography .section-tag {
    background: rgba(255, 255, 255, 0.1);
}

.geography .section-desc {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

.geography-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.geography-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 40px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.geography-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.geography-card h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.geography-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Documents Section */

.documents {
    padding: 150px 60px;
    background: var(--cream);
    position: relative;
}

.documents .section-desc {
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

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

.document-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.document-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.document-card:last-child .document-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.document-card:hover .document-icon {
    transform: scale(1.1) rotate(5deg);
}

.document-card h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.document-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Process Section */

.process {
    padding: 150px 60px;
    background: var(--cream);
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    border-radius: 2px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-circle {
    width: 120px;
    height: 120px;
    background: var(--white);
    border: 4px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .step-circle {
    background: var(--red);
    transform: scale(1.1);
}

.process-step:hover .step-circle svg {
    fill: var(--white);
}

.step-circle svg {
    width: 40px;
    height: 40px;
    fill: var(--red);
    transition: fill 0.4s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 250px;
    margin: 0 auto;
}

/* Portfolio Section */

.portfolio {
    padding: 150px 60px;
    background: var(--white);
}

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

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */

.cta {
    padding: 150px 60px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

/* Contact Form */

.contact {
    padding: 150px 60px;
    background: var(--blue-dark);
}

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

.contact-info h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item-text h4 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-text p {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select option {
    background: var(--blue-dark);
    color: var(--white);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
}

/* Footer */

footer {
    padding: 80px 60px 40px;
    background: var(--black);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

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

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

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

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

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

/* Scroll Animation Classes */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* RESPONSIVE - 1200px  */
/* ==================== */

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

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

    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ==================== */
/* RESPONSIVE - 992px   */
/* ==================== */

@media (max-width: 992px) {
    nav {
        padding: 15px 20px;
    }

    nav.scrolled {
        padding: 10px 20px;
    }

    /* Beautiful Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

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

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 2rem;
        font-family: 'Unbounded', sans-serif;
        font-weight: 600;
        color: var(--white);
        padding: 20px 40px;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        color: var(--white);
        transform: scale(1.1);
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 10px;
        width: 0;
        height: 3px;
        background: var(--white);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::before {
        width: 50%;
    }

    /* Menu toggle on top when open */
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 120px 30px 60px;
    }

    .hero-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.1;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .floating-brush,
    .paint-drip {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        gap: 50px;
    }

    .process-timeline::before {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .about,
    .services,
    .partners,
    .geography,
    .documents,
    .process,
    .portfolio,
    .cta,
    .contact {
        padding: 100px 30px;
    }
}

/* ==================== */
/* RESPONSIVE - 768px   */
/* ==================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .about-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .about,
    .services,
    .partners,
    .geography,
    .documents,
    .process,
    .portfolio,
    .cta,
    .contact {
        padding: 80px 20px;
    }

    footer {
        padding: 60px 20px 30px;
    }

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

    .geography-grid {
        flex-direction: column;
        align-items: center;
    }

    .geography-card {
        width: 100%;
        max-width: 300px;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline {
        padding: 15px 30px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

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

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

    .step-circle {
        width: 100px;
        height: 100px;
    }

    .step-circle svg {
        width: 30px;
        height: 30px;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    /* Mobile menu font size */
    .nav-links a {
        font-size: 1.6rem;
        padding: 15px 30px;
    }
}

/* ==================== */
/* RESPONSIVE - 480px   */
/* ==================== */

@media (max-width: 480px) {
    nav {
        padding: 12px 15px;
    }

    .logo {
        width: 120px;
        height: 40px;
    }

    .logo img {
        height: 140px;
    }

    .hero {
        padding: 100px 15px 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .section-tag {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

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

    .about-card,
    .service-card,
    .partner-card,
    .document-card {
        padding: 30px 20px;
    }

    .about-icon,
    .partner-icon,
    .document-icon {
        width: 60px;
        height: 60px;
    }

    .about-card h3,
    .service-card h3,
    .partner-card h3 {
        font-size: 1.1rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 1rem;
    }

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

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

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

    .loader-logo {
        font-size: 3rem;
    }
}

/* ==================== */
/* RESPONSIVE - 380px   */
/* ==================== */

@media (max-width: 380px) {
    nav {
        padding: 10px 12px;
    }

    .logo {
        width: 100px;
        height: 35px;
    }

    .logo img {
        height: 120px;
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
    }

    .hero {
        padding: 90px 12px 30px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 40px;
    }

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

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

    .section-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

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

    .about,
    .services,
    .partners,
    .geography,
    .documents,
    .process,
    .portfolio,
    .cta,
    .contact {
        padding: 60px 12px;
    }

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

    .about-card,
    .service-card,
    .partner-card,
    .document-card {
        padding: 25px 15px;
        border-radius: 16px;
    }

    .about-icon,
    .partner-icon,
    .document-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .about-icon svg,
    .partner-icon svg,
    .document-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-card h3,
    .service-card h3,
    .partner-card h3,
    .document-card h4 {
        font-size: 1rem;
    }

    .about-card p,
    .service-card p,
    .partner-card > p,
    .document-card p {
        font-size: 0.85rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-price {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .partner-list li {
        font-size: 0.85rem;
        gap: 10px;
    }

    .partner-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .step-circle {
        width: 80px;
        height: 80px;
    }

    .step-circle svg {
        width: 25px;
        height: 25px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        top: -5px;
        right: -5px;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }

    .geography-card {
        padding: 20px 25px;
        min-width: auto;
    }

    .geography-card h4 {
        font-size: 0.9rem;
    }

    .cta h2 {
        font-size: 1.4rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white,
    .btn-outline {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

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

    .contact-info > p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 25px 15px;
        border-radius: 20px;
    }

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

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .form-submit {
        padding: 14px;
        font-size: 0.9rem;
    }

    footer {
        padding: 50px 12px 25px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

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

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .loader-logo {
        font-size: 2.5rem;
    }

    .loader-bar {
        width: 150px;
    }

    /* Mobile menu smaller */
    .nav-links a {
        font-size: 1.3rem;
        padding: 12px 25px;
    }

    /* Hide custom cursor on mobile */
    .cursor {
        display: none;
    }
}

/* ==================== */
/* RESPONSIVE - 320px   */
/* ==================== */

@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.3rem;
    }

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

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

    .cta h2 {
        font-size: 1.2rem;
    }

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