:root {
    --primary-blue: #0a2342;
    --accent-coral: #ff6b6b;
    --accent-gold: #ffd166;
    --gradient-sky: linear-gradient(135deg, #0a2342 0%, #2d5a87 50%, #ff6b6b 100%);
    --gradient-soft: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-section: 100px;
    --border-radius-card: 24px;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

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


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

.section-padding {
    padding: var(--spacing-section) 0;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}


.display-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-sky);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent-coral);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    white-space: nowrap;
    gap: 10px;
}

.btn-primary {
    background: var(--accent-coral);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    background: #ff5252;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    padding: 12px 0;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link:hover {
    color: var(--accent-coral);
}

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

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

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 32px;
    }

    .nav-link {
        border: none;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-coral);
        transition: width 0.3s;
    }

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

    .mobile-toggle {
        display: none;
    }
}


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

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-sky);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 0;
}

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

.hero-tagline {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(10, 35, 66, 0.1);
    color: var(--primary-blue);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-image {
    display: none;
}

@media (min-width: 992px) {
    .hero-image {
        display: block;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: 45%;
        max-width: 600px;
        z-index: 1;
    }
}


.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-card);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-sky);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-coral);
    margin-bottom: 16px;
}


.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-coral);
    border-radius: var(--border-radius-card);
    z-index: -1;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}


.team-card {
    text-align: center;
    padding: 24px;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid white;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.team-photo:hover {
    transform: scale(1.05);
}
.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid white;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent-coral);
    font-weight: 600;
    margin-bottom: 12px;
}

.service-area-map {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 40px;
}

.service-area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.team-role {
    color: var(--accent-coral);
    font-weight: 600;
    margin-bottom: 12px;
}


.testimonials-section {
    background: var(--gradient-sky);
    color: white;
}

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

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

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

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

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}


.contact-section {
    background: #fff;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 48px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

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

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


.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


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

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

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}


.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 400px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    display: none; 
    border-left: 4px solid var(--accent-coral);
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.cookie-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-coral);
    color: white;
    border: none;
}

.cookie-accept:hover {
    background: #ff5252;
}

.cookie-decline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        left: auto;
    }
}


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

.page-header h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
}

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

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


.process-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--accent-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}


.faq-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: #f9f9f9;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}


.content-expandable {
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.content-expandable.expanded {
    max-height: 2000px;
}

.read-more-btn {
    background: transparent;
    color: var(--accent-coral);
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}


.service-area-map {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 40px;
}
