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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(212, 165, 116, 0.3);
    border-top-color: #d4a574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: #d4a574;
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 3px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
}

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

.nav-brand a {
    color: #fff;
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.nav-link:hover {
    color: #d4a574;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #d4a574;
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

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

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

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

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.slide-title {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease;
}

.slide-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: #d4a574;
}

/* Buttons */
.btn-primary {
    background: #d4a574;
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #c9a871;
    transform: scale(1.05);
}

.btn-secondary {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: #d4a574;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background: #fff;
    color: #d4a574;
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

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

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    letter-spacing: 3px;
    z-index: 2;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.section-header h2 {
    font-size: 40px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: #d4a574;
    margin: 0 auto;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 0;
    color: #ccc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section,
.dress-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.about-content .divider {
    margin: 0 0 30px 0;
}

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

.about-content button {
    margin-top: 10px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pricing-card {
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price {
    font-size: 56px;
    color: #d4a574;
    margin-bottom: 30px;
}

.pricing-card ul {
    margin-bottom: 40px;
}

.pricing-card li {
    color: #666;
    margin-bottom: 15px;
}

/* Season Section */
.season-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.season-section .section-header h2 {
    color: #fff;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.season-card {
    cursor: pointer;
}

.season-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.season-card:hover .season-image img {
    transform: scale(1.1);
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.season-card:hover .season-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.season-card h3 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.season-card p {
    color: #999;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-slider {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial {
    position: absolute;
    text-align: center;
    padding: 0 40px;
    opacity: 0;
    transition: opacity 1s ease;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    color: #333;
    margin-bottom: 30px;
    max-width: 800px;
}

.testimonial-author {
    letter-spacing: 2px;
    color: #d4a574;
    margin-bottom: 5px;
}

.testimonial-date {
    color: #999;
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 300px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: #d4a574;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #d4a574;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.blog-link {
    color: #000;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #d4a574;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #d4a574;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col h4 {
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #999;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #999;
}

.footer-col ul li a {
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 56px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb a {
    color: #fff;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4a574;
}

.breadcrumb span {
    color: #d4a574;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #fff;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4a574;
    background: #fff;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 18px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d4a574;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.team-image {
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #d4a574;
}

/* FAQ Section */
.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

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

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

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

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

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

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

.faq-answer p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

/* Map */
#map {
    width: 100%;
    height: 500px;
    background: #f0f0f0;
}

/* Blog Detail */
.blog-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content h2 {
    font-size: 36px;
    margin: 30px 0 20px;
}

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

.blog-tags {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tag {
    background: #f8f8f8;
    padding: 8px 15px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d4a574;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 20px 0;
        align-items: stretch;
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.5);
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .about-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .pricing-grid,
    .season-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }

      .pricing-grid,
    .season-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .slide-subtitle {
        font-size: 16px;
    }

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

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

    .section-header h2 {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #000;
}

