/* Variables */
:root {
    --primary-color: #FF4D8D;
    --secondary-color: #FFF5E6;
    --accent-color: #FF1A75;
    --text-color: #2D1F2A;
    --background-color: #ffffff;
    --card-background: #FFF5E6;
    --spacing-unit: 1rem;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Philosopher', serif;
    margin-bottom: var(--spacing-unit);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

/* Layout */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.section {
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
}

/* Navigation */
.navbar {
    background-color: var(--background-color);
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: block;
    width: 100px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nav-links a {
    margin: 0 var(--spacing-unit);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    padding-bottom: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s ease-in-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.8) 0%, rgba(255, 26, 117, 0.7) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    text-align: center;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-video {
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

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

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.feature i {
    font-size: 2rem;
    color: white;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Zone Section */
.zone-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.zone-info {
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-background) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.zone-list {
    list-style: none;
    margin: 1.5rem 0;
}

.zone-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(155, 76, 138, 0.2);
}

.zone-list i {
    color: var(--accent-color);
}

.zone-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.zone-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(155, 76, 138, 0.1);
    border-radius: var(--border-radius);
}

.zone-note i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.zone-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 2);
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.contact-method a,
.contact-method p {
    color: var(--text-color);
    text-decoration: none;
    margin: 0;
    font-size: 0.95rem;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.instagram-link i {
    font-size: 1.5rem;
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-unit);
    }
    
    .contact-card,
    .contact-form {
        padding: calc(var(--spacing-unit) * 1.5);
    }
    
    .social-links a {
        padding: 0.6rem;
    }

    .logo {
        width: 80px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-video {
        max-width: 100%;
        margin: 2rem auto;
    }
    
    .hero {
        min-height: 100vh;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: calc(var(--spacing-unit) * 2);
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info {
    margin-bottom: 1rem;
}

.footer-info h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.copyright {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a, 
.footer-credit {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-credit {
    color: var(--text-color);
}

.footer-credit a {
    color: var(--accent-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .nav-links {
        display: none;
    }

    .zone-container {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-unit);
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

/* Video Gallery Section */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.video-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.video-gallery-item:hover video {
    transform: scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.3) 0%, rgba(255, 26, 117, 0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
}

.video-gallery-item:hover .video-overlay {
    opacity: 0.8;
    backdrop-filter: blur(2px);
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.play-button i {
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 3px;
    transition: all 0.3s ease;
}

.video-gallery-item:hover .play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.video-gallery-item:hover .play-button i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.video-modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
}

.video-modal-close:hover {
    background: rgba(255,77,141,0.8);
    transform: scale(1.1);
}

/* Responsive Video Gallery */
@media (max-width: 768px) {
    .video-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .video-gallery-item {
        aspect-ratio: 9/16;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .video-modal-content {
        width: 95%;
        max-width: 350px;
    }
    
    .video-modal-close {
        right: 10px;
        top: 10px;
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
    padding: calc(var(--spacing-unit) * 4);
}

.testimonial-card {
    background: var(--card-background);
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 1rem 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--secondary-color);
    padding: 1rem 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Enhanced Service Cards */
.service-card {
    background: linear-gradient(135deg, var(--background-color) 0%, var(--secondary-color) 100%);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Services Container */
.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-background) 0%, var(--secondary-color) 20%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-category {
    margin-bottom: 2.5rem;
}

.service-category h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.service-name {
    font-weight: 500;
    color: var(--text-color);
}

.service-price {
    font-weight: 600;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
}

.service-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(155, 76, 138, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
    font-style: italic;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-container {
        padding: 1rem;
    }

    .service-category h3 {
        font-size: 1.5rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .service-price {
        font-size: 1.1rem;
    }
}

/* Instagram Section */
.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.instagram-profile:hover {
    color: var(--primary-color);
}

.instagram-profile i {
    font-size: 1.5rem;
}

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

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.02);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.instagram-footer .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        grid-template-columns: 1fr;
    }
}

/* About Section Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--card-background) 0%, var(--secondary-color) 20%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.expertise-list li:hover {
    transform: translateX(10px);
}

.expertise-list i {
    color: var(--accent-color);
    font-size: 2rem;
}

.expertise-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

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

.highlight-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.detail-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.detail-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }

    .about-intro h3 {
        font-size: 1.5rem;
    }

    .expertise-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .business-details {
        grid-template-columns: 1fr;
    }

    .services-highlights {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding-top: 120px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section .container {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-section h1 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-section p, .legal-section ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 1rem 2rem 1rem;
    }

    .legal-section h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    display: none;
    text-align: center;
    font-weight: 500;
    animation: fadeSlideIn 0.3s ease-out forwards;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.form-message.error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: var(--shadow);
}

.form-message i {
    font-size: 1.2rem;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
}

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-modal {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalShow 0.3s ease-out;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-modal i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-modal h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.form-modal p {
    margin-bottom: 1.5rem;
}

.form-modal button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-modal button:hover {
    background: var(--accent-color);
}

/* Page 404 */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.error-section h1 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.error-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.error-actions {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .error-section h1 {
        font-size: 2rem;
    }
    
    .error-section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-video {
        max-width: 100%;
        margin: 2rem auto;
    }
}

/* Mixed Gallery Section (Photos + Videos) */
.mixed-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Photo Items */
.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2) 0%, rgba(255, 26, 117, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
}

.photo-item:hover .photo-overlay {
    opacity: 1;
    backdrop-filter: blur(2px);
}

.zoom-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.zoom-icon i {
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.photo-item:hover .zoom-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3);
}

.photo-item:hover .zoom-icon i {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Responsive Mixed Gallery */
@media (max-width: 768px) {
    .mixed-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .photo-item {
        aspect-ratio: 1;
    }
    
    .zoom-icon {
        width: 50px;
        height: 50px;
    }
    
    .zoom-icon i {
        font-size: 16px;
    }
}