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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #c9a688;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a688;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    /* evenly space bars */
    width: 30px;
    /* same as original */
    height: 22.3px;
    /* bar height * 3 + spacing */
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    /* fills the container */
    height: 3px;
    background: #333;
    border-radius: 2px;
    /* smooth edges */
    transition: all 0.4s ease;
    /* REMOVE margin completely */
}

.bar {
    width: 100%;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-10px);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #C9A688;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #C9A688;
}

.cta-button:hover {
    background: transparent;
    color: #C9A688;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 166, 136, 0.3);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #c9a688;
}

/* Introduction Section */
.introduction {
    padding: 80px 0;
    background: white;
}

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

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #c9a688;
    margin-bottom: 1rem;
}

/* Featured Collection */
.featured-collection {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    cursor: pointer;
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

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

.collection-overlay h3 {
    color: #c9a688;
    margin-bottom: 0.5rem;
}

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

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #c9a688;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon {
    font-size: 2rem;
}

.philosophy-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c9a688;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.process-step h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.values-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #c9a688;
}

.value-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.gallery-content h3 {
    color: #c9a688;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    margin-bottom: 1.5rem;
}

.view-details {
    background: #c9a688;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: white;
    color: #c9a688;
}

/* Filter Section */
.filter-section {
    padding: 40px 0;
    background: #f8f8f8;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #333;
    border: 2px solid #333;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #c9a688;
    color: white;
    border-color: #c9a688;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 4rem;
    color: #c9a688;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #c9a688;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container,
.contact-info-container {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.submit-button {
    background: #c9a688;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-details {
    margin-bottom: 2rem;
}

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

.contact-icon {
    font-size: 1.5rem;
    color: #c9a688;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 166, 136, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #c9a688;
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.contact-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-text small {
    color: #999;
}

.whatsapp-link {
    color: #c9a688;
    text-decoration: none;
    font-weight: 600;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-bottom: 2rem;
}

.business-hours h3 {
    color: #333;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

/* Social Media */
.social-media h3 {
    color: #333;
    margin-bottom: 1rem;
}

.social-links-detailed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-detailed {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link-detailed:hover {
    background: #c9a688;
    color: white;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.2rem;
    color: #c9a688;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 166, 136, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link-detailed:hover .social-icon {
    background: #c9a688;
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.social-text h4 {
    margin-bottom: 0.25rem;
}

.social-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.map-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 2rem;
}

.map-details {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.map-details p {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #C9A688 0%, #B8956F 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #c9a688;
    border-color: white;
}

.cta-section .cta-button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 2rem;
}

.lightbox-info h3 {
    color: #333;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #c9a688;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a688;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #c9a688;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }



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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

    .values-list {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-info {
        padding: 1rem;
    }
}

/* X ANIMATION */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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


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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c9a688;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8941F;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Icons Container */
.philosophy-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Icon Circle */
/* Updated Icon Sizes */
.icon-circle {
    width: 90px;
    /* Increased from 80px */
    height: 90px;
    /* Increased from 80px */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 2px solid #C9A688;
}

/* Crown PNG Icon - Larger size */
.crown-icon {
    width: 50px;
    /* Increased from 40px */
    height: 50px;
    /* Increased from 40px */
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Keep other icons slightly smaller for visual hierarchy */
.icon-svg {
    width: 45px;
    /* Increased from 40px */
    height: 45px;
    /* Increased from 40px */
    transition: all 0.3s ease;
}

/* Default State - Brown icons on white circle */
.philosophy-icon path {
    stroke: #C9A688;
    fill: #C9A688;
}

/* Hover State - White icons on brown circle */
.philosophy-item:hover .icon-circle {
    background: #C9A688;
    transform: rotate(10deg) scale(1.1);
    border-color: white;
}

.philosophy-item:hover .icon-svg path {
    stroke: white;
    fill: white;
}

.philosophy-item:hover .crown-icon {
    filter: brightness(0) invert(1);
}

/* Text Styles */
.philosophy-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}







/* ============================= */
/* CINEMATIC EARTH MAP - FINAL VERSION */
/* ============================= */
.cinematic-map-section {
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
}

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

/* EARTH GLOBE PHASE */
.global-view {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 3s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 10;
    opacity: 1;
    transform: scale(1);
}

.earth-globe {
    width: 800px;
    height: 800px;
    background: url('images/earth.png') center/cover no-repeat;
    border-radius: 50%;
    box-shadow: 0 0 90px 10px rgba(0, 150, 255, 0.6);
    animation: rotateEarth 120s linear infinite;
    will-change: transform;
}


.location-pulse {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 11;
}

.pin {
    width: 12px;
    height: 12px;
    background: #C9A688;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px #C9A688;
}

.pulse-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(201, 166, 136, 0.6);
    border-radius: 50%;
    animation: pulse 3s ease-out infinite;
    top: -14px;
    left: -14px;
}

/* MAP PHASE - HIDDEN INITIALLY */
.detailed-map-container {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition:
        opacity 1.5s ease 2.5s,
        transform 2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2.5s,
        visibility 0s linear 3s;
    /* Fully hidden for first 3 seconds */
}

.luxury-map-frame {
    position: relative;
    height: 100%;
    width: 100%;
    border: none;
    opacity: 0;
    transition: opacity 0.5s ease 3s;
}

/* LUXURY CARD (your existing styles preserved) */
.luxury-location-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    width: 320px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(201, 166, 136, 0.2);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease 3.5s;
    animation: float 8s ease-in-out infinite;
}

/* ANIMATION STATES */
.cinematic-map-section.zoomed .global-view {
    opacity: 0;
    transform: scale(5);
    pointer-events: none;
}

.cinematic-map-section.zoomed .detailed-map-container {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.cinematic-map-section.zoomed .luxury-map-frame {
    opacity: 1;
}

.cinematic-map-section.zoomed .luxury-location-card {
    opacity: 1;
}

/* ANIMATIONS */
@keyframes rotateEarth {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* PRESERVED EXISTING STYLES */
.map-link {
    color: #ccc;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.map-link:hover,
.map-link:active {
    color: #C9A688;
    border-bottom: 1px solid #C9A688;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
    .earth-globe {
        width: 600px;
        height: 600px;
    }

    .luxury-location-card {
        width: 280px;
        top: 30px;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .earth-globe {
        width: 400px;
        height: 400px;
    }

    .luxury-location-card {
        position: relative;
        width: calc(100% - 60px);
        margin: 20px auto;
        left: 0;
    }

    .cinematic-map-section {
        height: 90vh;
    }
}

/* By Nevola */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.nevola-credit {
    color: #ccc;
    font-size: 0.9rem;
}

.nevola-credit a {
    color: #c9a688;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nevola-credit a:hover {
    text-decoration: underline;
}