@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d3436;
    --secondary: #6c5ce7;
    --accent: #a29bfe;
    --light: #f8f9fa;
    --gold: #d4a574;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.header-visible {
    transform: translateY(0);
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a2e 100%);
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    padding: 70px 25px 25px;
    transition: right 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: var(--white);
    font-size: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary) 50%, #2d3436 100%);
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(212,165,116,0.2);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero-text h1 span {
    color: var(--gold);
}

.hero-text p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 25px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-stats-item {
    text-align: center;
}

.hero-stats-item span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.hero-stats-item small {
    font-size: 11px;
    color: var(--text-light);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    font-size: 14px;
}

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    bottom: 20px;
    right: -8px;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    text-align: center;
}

.about-experience span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.about-experience small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.about-feature i {
    color: var(--secondary);
}

.packages {
    background: var(--light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header {
    background: linear-gradient(135deg, var(--primary), #1a1a2e);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.package-header h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.package-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
}

.package-price span {
    font-size: 14px;
    font-weight: 400;
}

.package-body {
    padding: 20px;
}

.package-features {
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--light);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--secondary);
    font-size: 12px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
}

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--secondary);
}

.cta-section .btn:hover {
    background: var(--gold);
    color: var(--white);
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.7;
    max-width: 250px;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    padding: 4px 0;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--gold);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    opacity: 0.6;
}

.footer-policies {
    display: flex;
    gap: 15px;
}

.footer-policies a {
    font-size: 11px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-policies a:hover {
    opacity: 1;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), #1a1a2e);
    padding: 100px 0 50px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.8;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.5;
}

.contact-section {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary), #1a1a2e);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    background: var(--light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--light);
}

.error-content h1 {
    font-size: 100px;
    color: var(--secondary);
    line-height: 1;
}

.error-content h2 {
    font-size: 24px;
    margin: 15px 0;
    color: var(--primary);
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 36px;
}

.thankyou-content h1 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.thankyou-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.policy-page {
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 20px;
    margin: 25px 0 12px;
    color: var(--primary);
}

.policy-content h3 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: var(--primary);
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    list-style-type: disc;
}

.policy-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    opacity: 0.9;
    flex: 1;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.cookie-accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.about-story {
    background: var(--light);
}

.about-values {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-size: 18px;
}

.value-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--primary);
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.about-team {
    background: var(--light);
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-intro p {
    font-size: 14px;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: calc(100% - 50px);
    height: 2px;
    background: var(--accent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--primary);
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
}

.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 15px;
    font-size: 13px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid,
    .packages-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop,
    .header-cta .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .header-cta {
        gap: 10px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .services-grid,
    .packages-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p,
    .footer-contact {
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .service-card,
    .package-card,
    .testimonial-card,
    .value-card {
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .error-content h1 {
        font-size: 70px;
    }
    
    .policy-content {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .hero-text h1 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .package-price {
        font-size: 26px;
    }
}
