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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #CD853F;
    --dark: #2C1810;
    --light: #FDF5E6;
    --cream: #FAEBD7;
    --terracotta: #E2725B;
    --clay: #B87333;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 245, 230, 0.97);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--terracotta);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

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

.hero-bg-shape {
    position: absolute;
    right: -10%;
    top: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-title span {
    color: var(--terracotta);
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: #5a4a3f;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(44, 24, 16, 0.2);
}

.hero-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--terracotta);
}

.floating-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--dark);
}

.floating-text span {
    font-size: 0.85rem;
    color: #888;
}

.section-offset {
    padding: 100px 0;
    position: relative;
}

.section-title-block {
    margin-bottom: 60px;
}

.section-label {
    color: var(--terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.about-creative {
    background: white;
    position: relative;
}

.about-creative::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 70%;
    background: var(--cream);
    z-index: 0;
}

.about-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image-stack {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.about-img-main {
    width: 80%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 8px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-text {
    font-size: 1.1rem;
    color: #5a4a3f;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--terracotta);
}

.feature-text h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
}

.services-diagonal {
    background: linear-gradient(170deg, var(--light) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.services-diagonal::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 10%;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header .section-title {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--terracotta);
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 0.9rem;
    color: #888;
}

.service-link {
    color: var(--terracotta);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.testimonials-wave {
    background: var(--dark);
    padding: 120px 0;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 60px 0;
}

.testimonials-wave .section-label {
    color: var(--accent);
}

.testimonials-wave .section-title {
    color: white;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    min-width: 380px;
    scroll-snap-align: start;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-info h4 {
    color: white;
    font-size: 1rem;
}

.author-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.gallery-mosaic {
    padding: 100px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item:nth-child(1) {
    flex: 2 1 400px;
}

.gallery-item:nth-child(4) {
    flex: 2 1 400px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(44,24,16,0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cta-split {
    display: flex;
    min-height: 500px;
}

.cta-left {
    flex: 1;
    background: var(--terracotta);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-left p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.btn-white {
    background: white;
    color: var(--terracotta);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-right {
    flex: 1;
    position: relative;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-creative {
    background: white;
    padding: 100px 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px 0;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 50px;
    background: var(--cream);
}

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

.process-number {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--terracotta);
}

.process-content {
    flex: 1;
    max-width: 450px;
}

.process-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.process-content p {
    color: #666;
    line-height: 1.8;
}

.contact-asymmetric {
    background: var(--cream);
    padding: 100px 0;
    position: relative;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.contact-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

.form-submit {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 2;
    min-width: 280px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--terracotta);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--terracotta);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--terracotta);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 40px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.cookie-text p {
    color: #666;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--terracotta);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: var(--secondary);
}

.cookie-reject {
    background: transparent;
    color: var(--dark);
    padding: 12px 30px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--dark);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--terracotta);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(226, 114, 91, 0.4);
    z-index: 999;
    display: none;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    display: flex;
}

.sticky-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(226, 114, 91, 0.5);
}

.sticky-cta svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

.breadcrumb .current {
    color: var(--accent);
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--dark);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.legal-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    animation: pulse 2s infinite;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-service {
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.thanks-service span {
    color: #888;
    font-size: 0.9rem;
}

.thanks-service strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 5px;
}

.thanks-content .btn-primary {
    margin-top: 30px;
}

.services-full {
    padding: 80px 0;
    background: white;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-full-card {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--light);
    border-radius: 25px;
    transition: all 0.4s ease;
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--cream);
}

.service-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-full-image {
    flex: 1;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-full-content {
    flex: 1;
}

.service-full-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-full-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-full-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    background: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark);
}

.about-full {
    padding: 80px 0;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-image {
    flex: 1;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-content {
    flex: 1;
}

.about-story-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-story-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.team-section {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.team-section h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    max-width: 280px;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--cream);
}

.team-member h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-member span {
    color: var(--terracotta);
    font-size: 0.95rem;
}

.contact-full {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-full {
    flex: 1;
}

.contact-info-full h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info-full > p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

.info-card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--terracotta);
}

.info-card h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-full {
    flex: 1;
    background: var(--cream);
    padding: 50px;
    border-radius: 25px;
}

.contact-form-full h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

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

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

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

    .about-layout {
        flex-direction: column;
    }

    .about-creative::before {
        display: none;
    }

    .service-card {
        width: calc(50% - 15px);
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .process-step::after {
        left: 50px;
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .footer-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .sticky-cta {
        right: 15px;
        bottom: 15px;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .hero-floating-card {
        display: none;
    }
}
