:root {
    --color-terracotta: #E2725B;
    --color-terracotta-dark: #C05640;
    --color-terracotta-light: #F29F85;
    --color-electric-blue: #2D5BFF;
    --color-electric-blue-dark: #0033CC;
    --color-electric-blue-light: #6B8AFF;
    --color-cream: #FFF8F0;
    --color-dark: #1A1A1A;
    --color-gray: #4A4A4A;
    --color-gray-light: #E5E5E5;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(226, 114, 91, 0.15);
    --shadow-hover: 0 20px 60px -15px rgba(45, 91, 255, 0.2);
    --radius-soft: 16px;
    --radius-sharp: 4px;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-soft);
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
    border: 2px solid transparent;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: var(--color-terracotta);
    color: white;
    box-shadow: 0 4px 14px rgba(226, 114, 91, 0.4);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226, 114, 91, 0.5);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-electric-blue);
    border-color: var(--color-electric-blue);
}

.btn-secondary:hover {
    background: var(--color-electric-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--color-dark);
    border-color: var(--color-gray-light);
}

.btn-outline:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
    transform: translateY(-2px);
}

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

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

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-terracotta);
    border-radius: 2px;
}

.section-header p {
    color: var(--color-gray);
    max-width: 600px;
    margin: 24px auto 0;
    font-size: 1.125rem;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-electric-blue));
    border-radius: var(--radius-sharp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--color-gray);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

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

.main-nav a:hover, .main-nav a.active {
    color: var(--color-terracotta);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFE8E0 100%);
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-terracotta);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-electric-blue);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--color-terracotta);
    border-radius: var(--radius-soft);
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: var(--color-electric-blue);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}


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

.service-card {
    background: white;
    border-radius: var(--radius-soft);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-terracotta));
    border-radius: var(--radius-sharp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

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

.service-card p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-electric-blue);
}

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

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


.features-section {
    background: var(--color-dark);
    color: white;
}

.features-section h2, .features-section h3 {
    color: white;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    border: 2px solid var(--color-terracotta);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}


.about-section {
    background: linear-gradient(135deg, #FFE8E0 0%, var(--color-cream) 100%);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

.about-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-terracotta);
    opacity: 0.2;
    border-radius: var(--radius-soft);
    z-index: -1;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-gray);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-list .check-icon {
    width: 24px;
    height: 24px;
    background: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--radius-soft);
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

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

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--color-gray-light);
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-info .role {
    color: var(--color-terracotta);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-info p {
    color: var(--color-gray);
    margin-top: 12px;
    font-size: 0.9rem;
}


.testimonials-section {
    background: var(--color-electric-blue);
    color: white;
}

.testimonials-section h2 {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-soft);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-gray-light);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: white;
}

.testimonial-author span {
    font-size: 0.875rem;
    opacity: 0.8;
}


.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--color-terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-gray);
}


.contact-section {
    background: var(--color-cream);
}

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

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: var(--radius-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.contact-icon.terracotta {
    color: var(--color-terracotta);
}

.contact-icon.blue {
    color: var(--color-electric-blue);
}

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

.contact-details p {
    color: var(--color-gray);
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-soft);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-sharp);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    color: var(--color-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-electric-blue);
    box-shadow: 0 0 0 4px rgba(45, 91, 255, 0.1);
}

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


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: var(--radius-soft);
    overflow: hidden;
    position: relative;
}

.project-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--color-gray-light);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.project-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}


.cta-section {
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-electric-blue));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-terracotta);
}

.cta-section .btn-primary:hover {
    background: var(--color-cream);
}


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

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

.footer-brand .logo {
    color: var(--color-cream);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 300px;
}

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

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

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

.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: 16px;
}

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

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

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

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


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 400px;
    background: var(--color-dark);
    color: white;
    padding: 24px;
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: block;
}

.cookie-consent-banner h4 {
    color: white;
    margin-bottom: 8px;
}

.cookie-consent-banner p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-sharp);
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background: var(--color-terracotta-dark);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cookie-btn-decline:hover {
    border-color: white;
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-question:hover {
    color: var(--color-terracotta);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--color-terracotta);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--color-gray);
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-soft);
    overflow: hidden;
    background: var(--color-gray-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFE8E0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.breadcrumb a {
    color: var(--color-gray);
}

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


@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

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

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

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

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

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hero-shape-1 {
        right: -50px;
    }

    .hero-shape-2 {
        left: -50px;
    }

    .hero-image::before {
        right: -10px;
        bottom: -10px;
    }

    .hero-image::after {
        right: -20px;
    }

    .about-image::before {
        left: -10px;
        bottom: -10px;
    }
}

@media (max-width: 480px) {
    .hero-shape-1 {
        right: -20px;
    }

    .hero-shape-2 {
        left: -20px;
    }

    .hero-image::before {
        right: 0;
        bottom: 0;
    }

    .hero-image::after {
        right: -10px;
    }

    .about-image::before {
        left: 0;
        bottom: 0;
    }
}

/* Force single column on very small screens to prevent overflow */
@media (max-width: 600px) {
    .services-grid,
    .features-grid,
    .team-grid,
    .testimonials-grid,
    .project-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}
