:root {
    --primary-color: #0a4d8c;
    --secondary-color: #0072bc;
    --text-color: #333;
    --bg-color: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
}

.header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.main {
    margin-top: 100px;
    padding: 2rem 1rem;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer {
    background: #333;
    color: white;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .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;
    }

    .nav-item {
        margin: 15px 0;
    }

    .main {
        margin-top: 80px;
    }
}

/* Base styles and CSS variables */
:root {
    --primary-color: #0a4d8c;
    --primary-light: #1a6db6;
    --primary-dark: #063661;
    --secondary-color: #00a1e4;
    --secondary-light: #33b5e8;
    --secondary-dark: #0072bc;
    --accent-color: #ffb830;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --bg-primary: #f5f7fa;
    --bg-secondary: #e9ecef;
    --bg-dark: #2c3e50;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
}

/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/pattern.svg') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2;
}

.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    height: 3px;
    background-color: var(--text-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.hamburger::before {
    transform: translateY(-9px);
}

.hamburger::after {
    transform: translateY(6px);
}

.nav-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-fast);
}

.nav-link:hover::before {
    width: 80%;
}

/* Main Content */
.main {
    margin-top: 80px;
    padding: 3rem 0;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.05), rgba(0, 161, 228, 0.05));
    border-radius: var(--border-radius-lg);
    margin-bottom: 4rem;
}

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

.category-card {
    background: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.category-description {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section {
    padding-right: 2rem;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition-medium);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        right: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background-color: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
        transform: rotate(45deg) translate(0, 0);
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
        transform: rotate(-45deg) translate(0, 0);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 2rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

/* Additional Utility Classes */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 4rem 0;
    border-radius: var(--border-radius-sm);
}

/* Секция преимуществ */
.advantages {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('path-to-pattern.svg');
    opacity: 0.1;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: var(--border-radius-sm);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.quality-icon::after {
    content: 'Q';
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.design-icon::after {
    content: 'D';
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.size-icon::after {
    content: 'S';
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.delivery-icon::after {
    content: '★';
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.advantage-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.advantage-card:hover .advantage-hover {
    opacity: 0.95;
}

.hover-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-medium);
}

.advantage-card:hover .hover-text {
    transform: translateY(0);
    opacity: 1;
}

/* Секция процесса заказа */
.order-process {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    margin-left: 2rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    flex-grow: 1;
    position: relative;
    transition: transform var(--transition-medium);
}

.step-content:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--bg-secondary), white);
}

.step-line {
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -53px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* Медиа-запросы */
@media screen and (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .process-timeline {
        margin: 2rem auto 0;
        padding: 1rem;
    }

    .step-content {
        margin-left: 1rem;
    }

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

    .process-step {
        margin-bottom: 2rem;
    }

    .step-line {
        left: 24px;
    }
}

/* Анимации */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.advantage-icon {
    animation: pulse 2s infinite;
}

.step-number {
    animation: pulse 2s infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

/* Дополнительные эффекты */
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.advantage-card:hover::before {
    opacity: 1;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.step-content:hover::before {
    opacity: 1;
}

/* Секция витрины */
.showcase {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-sizes {
    margin-bottom: 1.5rem;
}

.sizes-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.sizes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-tag {
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px dashed var(--text-secondary);
    opacity: 0.7;
    position: relative;
}

.size-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-secondary);
    opacity: 0.3;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-secondary);
}

.product-price {
    color: var(--text-secondary);
    font-style: italic;
}

.contact-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Медиа-запросы */
@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 114, 188, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.05) 0%, rgba(0, 161, 228, 0.1) 100%);
}

/* Main Content */
.hero-content {
    margin-top: 5%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Text Content */
.hero-text {
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-fast);
}

.hero-btn:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.hero-btn.secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Feature Cards */
.hero-features {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-secondary);
    position: relative;
}

.feature-icon::before,
.feature-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
}

.feature-icon.premium::before {
    width: 24px;
    height: 24px;
    top: 12px;
    left: 12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-icon.exclusive::before {
    width: 24px;
    height: 24px;
    top: 12px;
    left: 12px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.feature-icon.authentic::before {
    width: 24px;
    height: 24px;
    top: 12px;
    left: 12px;
    clip-path: circle(50% at 50% 50%);
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: rotate 30s linear infinite;
}

.decoration-square {
    position: absolute;
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--secondary-color);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.decoration-dots {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.2;
}

.decoration-line {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 150px;
    height: 4px;
    background: var(--secondary-color);
    opacity: 0.2;
    transform: rotate(-45deg);
}

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

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

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

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

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .decoration-circle,
    .decoration-square {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }

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

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

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

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

    .feature-card {
        padding: 1rem;
    }
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--bg-primary);
}

/* Background Elements */
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(10, 77, 140, 0.1), rgba(0, 161, 228, 0.1));
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 161, 228, 0.1), rgba(10, 77, 140, 0.1));
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(10, 77, 140, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
            linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
            linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 20px 20px;
    opacity: 0.03;
}

/* Content Wrapper */
.cta-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Content Side */
.cta-content {
    max-width: 600px;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s linear infinite;
}

.cta-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-title-line {
    display: block;
}

.cta-title-line.accent {
    color: var(--primary-color);
    position: relative;
}

.cta-title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features List */
.cta-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-bullet {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.feature-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    gap: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.button-arrow {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Image Side */
.cta-image {
    position: relative;
}

.image-container {
    position: relative;
    padding-top: 120%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.image-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.2), rgba(0, 161, 228, 0.2));
    z-index: 1;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
}
/* Stats */
.image-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .cta-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-features {
        max-width: 400px;
        margin: 0 auto 2.5rem;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
    }

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

    .image-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* About Hero Styles */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(15deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
    z-index: 1;
}
.about-hero-tt {
    color: white;
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

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

.about-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    color: white;
}

.about-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Story Section */
.about-story {
    padding: 6rem 0;
}

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

.story-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

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

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.2), rgba(0, 161, 228, 0.2));
}

.story-content {
    padding-right: 2rem;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.story-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fact-item {
    text-align: center;
}

.fact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: transform var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* Process Section */
.process {
    padding: 6rem 0;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.process-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

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

.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
}

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

.team-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.team-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* About CTA Section */
.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Utility Classes */
.center {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding-right: 0;
        text-align: center;
    }

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

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

@media screen and (max-width: 768px) {
    .about-hero {
        height: 50vh;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.25rem;
    }

    .story-facts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        text-align: center;
    }

    .process-number {
        position: static;
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .team-grid {
        gap: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1.1rem;
    }

    .value-card,
    .process-card,
    .team-card {
        margin: 0 1rem;
    }
}

/* CTA Section Responsive Styles */
@media screen and (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-content {
        text-align: center;
        padding: 0 1rem;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-feature {
        justify-content: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .image-stats {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

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

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-feature {
        padding: 0.5rem 0;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .cta-button.secondary {
        order: 2;
    }

    .image-stats {
        position: relative;
        bottom: 0;
        padding: 1rem;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

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

    .image-container {
        padding-top: 100%;
    }

    .image-frame {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

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

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

    .cta-shape {
        opacity: 0.5;
    }

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

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

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

/* Улучшение интерактивности на тач-устройствах */
@media (hover: none) {
    .cta-button:active {
        transform: scale(0.98);
    }

    .button-arrow {
        transition: none;
    }

    .cta-button:active .button-arrow {
        transform: translateX(3px);
    }

    .image-container {
        transform: none;
    }
}

/* Оптимизация для экранов с высоким DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cta-pattern {
        background-size: 10px 10px;
    }
}

/* Image Container Styles */
.image-container {
    position: relative;
    padding-top: 120%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.image-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
}

.showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(10, 77, 140, 0.2),
    rgba(0, 161, 228, 0.2)
    );
    z-index: 1;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    z-index: 2;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .image-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .image-container {
        padding-top: 100%;
    }

    .image-frame {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

/* Header & Navbar Styles */
.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.brand-slogan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .brand-content {
        gap: 8px;
    }

    .brand-logo {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-slogan {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 576px) {
    .brand-slogan {
        display: none;
    }
}

/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-primary);
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Card */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.info-block a:hover {
    color: var(--secondary-color);
}

/* Form Card */
.form-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }

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

    .contact-subtitle {
        font-size: 1rem;
    }

    .info-card,
    .form-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff4444;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #00C851;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .submit-btn {
        transform: none !important;
    }
}

/* Focus States */
.form-group input:focus,
.form-group textarea:focus,
.submit-btn:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
    outline: none;
}

/* Thank You Page Styles */
.thankyou-section {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.thankyou-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.success-icon::before,
.success-icon::after {
    content: '';
    position: absolute;
    background: white;
}

.success-icon::before {
    width: 40px;
    height: 4px;
    transform: rotate(45deg);
    top: 40px;
    left: 17px;
}

.success-icon::after {
    width: 20px;
    height: 4px;
    transform: rotate(-45deg);
    top: 37px;
    left: 25px;
}

.thankyou-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thankyou-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.back-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: transform var(--transition-fast);
}

.back-home:hover {
    transform: translateY(-2px);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform var(--transition-fast);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 77, 140, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(10, 77, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 77, 140, 0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .thankyou-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .cookie-btn {
        width: 100%;
    }
}