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



:root {
    --primary-dark: #1a1612;
    --primary-brown: #3d2817;
    --accent-brown: #5c3d26;
    --secondary-brown: #8b6f47;
    --light-brown: #a6896b;
    --accent-beige: #d4b896;
    --text-light: #f5ede0;
    --text-gray: #d4c4b0;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1a1612 0%, #3d2817 100%);
    --gradient-2: linear-gradient(135deg, #5c3d26 0%, #8b6f47 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--gradient-1);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(166, 137, 107, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 1rem;
}

.logo::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: var(--light-brown);
    opacity: 0.5;
}

.logo:hover {
    color: var(--light-brown);
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-list a:hover {
    color: var(--light-brown);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-1);
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

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

.decoration-line {
    position: absolute;
    background: linear-gradient(to right, transparent, var(--light-brown), transparent);
    opacity: 0.1;
}

.decoration-line-1 {
    width: 300px;
    height: 1px;
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.decoration-line-2 {
    width: 250px;
    height: 1px;
    bottom: 25%;
    right: 15%;
    transform: rotate(20deg);
}

.decoration-shape {
    position: absolute;
    border: 1px solid var(--light-brown);
    opacity: 0.08;
}

.decoration-shape-1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 15%;
    right: 20%;
    animation: float 20s infinite ease-in-out;
}

.decoration-shape-2 {
    width: 60px;
    height: 60px;
    border: 1px solid var(--light-brown);
    transform: rotate(45deg);
    bottom: 20%;
    left: 25%;
    animation: float 15s infinite ease-in-out reverse;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Hero Accordion */
.hero-accordion {
    margin: 2.5rem 0;
}

.accordion-item {
    background: rgba(139, 111, 71, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(166, 137, 107, 0.2);
}

.accordion-item.active {
    background: rgba(139, 111, 71, 0.5);
    border-color: var(--light-brown);
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--white);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--light-brown);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.accordion-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.6);
}

.btn-primary,
.btn-secondary {
    position: relative;
    z-index: 1;
}

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

.btn-secondary:hover {
    background: rgba(166, 137, 107, 0.2);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-brown);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--light-brown);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light-brown), transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.service-card {
    background: rgba(92, 61, 38, 0.25);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(166, 137, 107, 0.15);
    border-top: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--light-brown), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(92, 61, 38, 0.4);
    border-color: rgba(166, 137, 107, 0.4);
    border-top-color: var(--light-brown);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.25);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-brown);
    border-radius: 8px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    opacity: 0.6;
    transform: rotate(5deg);
}

/* Mobile App Icon */
.icon-mobile::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 40px;
    border: 2px solid var(--light-brown);
    border-radius: 4px;
    opacity: 1;
}

/* Design Icon */
.icon-design {
    border: none;
}

.icon-design::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(to right, transparent 0%, transparent 45%, var(--light-brown) 45%, var(--light-brown) 55%, transparent 55%),
                linear-gradient(to bottom, transparent 0%, transparent 45%, var(--light-brown) 45%, var(--light-brown) 55%, transparent 55%);
    opacity: 1;
    border: none;
}

.icon-design::after {
    display: none;
}

/* API Icon */
.icon-api {
    border-style: solid;
}

.icon-api::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--light-brown);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 1;
    border: none;
}

.icon-api::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--light-brown);
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0 0 4px 4px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
}

/* Security Icon */
.icon-security::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 8px;
    border: 2px solid var(--light-brown);
    border-top: none;
    border-left: none;
    border-right: none;
    top: 52%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 1;
}

.icon-security::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 18px;
    border: 2px solid var(--light-brown);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    z-index: 1;
}

/* Optimization Icon */
.icon-optimization::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid var(--light-brown);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Migration Icon */
.icon-migration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--light-brown);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    box-shadow: 0 -8px 0 var(--light-brown), 0 8px 0 var(--light-brown),
                -8px 0 0 var(--light-brown), 8px 0 0 var(--light-brown),
                -8px -8px 0 var(--light-brown), 8px -8px 0 var(--light-brown),
                -8px 8px 0 var(--light-brown), 8px 8px 0 var(--light-brown);
}

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

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid var(--light-brown);
    border-top: none;
    border-right: none;
    transform: translateY(-60%) rotate(-45deg);
}

/* Projects Section */
.projects {
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(166, 137, 107, 0.1);
    border-radius: 50%;
}

.projects::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(166, 137, 107, 0.1);
    transform: rotate(45deg);
}

.projects-slider {
    max-width: 900px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    min-height: 400px;
    margin-bottom: 2rem;
}

.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.project-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.project-content {
    background: rgba(45, 58, 107, 0.4);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(166, 137, 107, 0.3);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.project-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: block;
    object-fit: cover;
}

.project-slide.active .project-content {
    border-left-color: var(--light-brown);
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--light-brown);
    transition: height 0.5s ease;
}

.project-slide.active .project-content::before {
    height: 100%;
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.project-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-tech span {
    background: rgba(166, 137, 107, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--light-brown);
    font-size: 0.9rem;
    border: 1px solid rgba(166, 137, 107, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.project-tech span::before {
    content: '—';
    margin-right: 0.5rem;
    opacity: 0.5;
}

.project-tech span:hover {
    background: rgba(166, 137, 107, 0.5);
    transform: translateX(3px);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.slider-btn {
    background: rgba(166, 137, 107, 0.3);
    border: 1px solid var(--light-brown);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(166, 137, 107, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(166, 137, 107, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--light-brown);
    transform: scale(1.2);
}

/* About Section */
.about {
    background: var(--primary-dark);
}

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

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(166, 137, 107, 0.3);
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-gray);
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: var(--gradient-1);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(166, 137, 107, 0.2), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    color: var(--text-gray);
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--light-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.contact-form {
    background: rgba(139, 111, 71, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(166, 137, 107, 0.3);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(166, 137, 107, 0.5);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-brown);
    background: rgba(15, 23, 42, 0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(166, 137, 107, 0.3);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(166, 137, 107, 0.3);
    color: var(--text-gray);
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--gradient-1);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.4);
    position: relative;
    border: 2px solid var(--light-brown);
}

.thanks-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 18px;
    border: 3px solid var(--white);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -18px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-submessage {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Policy Pages */
.policy-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    min-height: 70vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.policy-date {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.policy-text h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.policy-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.policy-text ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.policy-text ul li {
    margin-bottom: 0.75rem;
}

.policy-text a {
    color: var(--light-brown);
    text-decoration: none;
}

.policy-text a:hover {
    text-decoration: underline;
}

.policy-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(166, 137, 107, 0.3);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-2);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    color: var(--white);
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--light-brown);
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-brown);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--light-brown);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gradient-1);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-list a {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-text h2 {
        font-size: 1.5rem;
    }
    
    .project-image {
        margin-bottom: 1rem;
    }
    
    .hero-image-container {
        width: 80%;
        right: -20%;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .project-slide,
    .btn {
        transition: all 0.3s ease;
    }
}

/* End of stylesheet */

