* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #ffffff;
    --dark-bg: #0d0d0d;
    --light-gold: #f4e4c1;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #000 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.navbar.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
    transition: var(--transition);
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.logo-text {
    display: inline-block;
}

.logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    border-radius: 8px;
}

/* Sections */
.section {
    display: none;
    padding: 4rem 2rem;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

@keyframes floatSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    font-size: 4.2rem;
    color: var(--secondary-color);
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    animation: slideDown 0.9s ease;
    font-weight: 800;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-size: 1.8rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-style: italic;
}

.description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.quote-hero {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
    color: var(--dark-bg);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.7);
}

/* General Headings */
h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* About Section */
.about-section {
    padding: 5rem 2rem !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Company button wrapper placed between intro box and the two side-by-side boxes */
.company-btn-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 0 0 1.5rem 0;
}

.company-btn-wrapper .footer-policy-btn {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 12px;
    min-width: 320px;
    max-width: 80%;
    box-shadow: 0 8px 26px rgba(212, 175, 55, 0.25);
}

/* Ensure the two boxes appear side-by-side on wider screens and stack on smaller screens */
@media (max-width: 900px) {
    .about-text {
        grid-template-columns: 1fr;
    }

    .about-text .intro-box,
    .company-btn-wrapper,
    .about-text .section-box,
    .motto-box {
        grid-column: 1 / -1;
    }

    .company-btn-wrapper .footer-policy-btn {
        min-width: 220px;
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }
}

.about-text .intro-box {
    grid-column: 1 / -1;
}

.about-text p {
    margin-bottom: 2rem;
    color: #e8e8e8;
    text-align: justify;
    font-size: 1.1rem;
}

.intro-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.intro-text {
    font-size: 1.25rem !important;
    color: var(--light-gold) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}

.section-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    color: var(--secondary-color);
    font-size: 1.9rem;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-text ul {
    list-style: none;
    margin-left: 0;
}

.about-text li {
    padding: 1.2rem 0 1.2rem 2rem;
    color: #e8e8e8;
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
    position: relative;
    font-size: 1.08rem;
}

.about-text li::before {
    content: '▸';
    position: absolute;
    left: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.about-text li:hover {
    color: var(--secondary-color);
    padding-left: 2.5rem;
    background: rgba(212, 175, 55, 0.08);
}

.motto {
    margin-top: 3.5rem;
    text-align: center;
    font-size: 2.2rem;
    text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.9);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.intro-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.intro-text {
    font-size: 1.25rem !important;
    color: var(--light-gold) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}

.section-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.quality-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.values-list {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.emphasis-text {
    background: rgba(212, 175, 55, 0.08);
    padding: 1.5rem;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1.12rem !important;
    margin-top: 1.5rem !important;
}

.motto-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.quote {
    text-align: center;
    font-size: 1.95rem;
    color: var(--light-gold);
    font-style: italic;
    font-weight: 700;
    margin: 2rem 0 2.5rem 0;
    padding: 2.5rem;
    border-left: 6px solid var(--secondary-color);
    border-right: 6px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    letter-spacing: 0.8px;
    line-height: 1.9;
}

.signature {
    text-align: center;
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 3px solid rgba(212, 175, 55, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.9;
}



.image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 4px solid var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    animation: float 8s infinite ease-in-out;
}

/* Catalog Grid */
.catalog-intro {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e8e8e8;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    letter-spacing: 0.3px;
}

.catalog-intro strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: #e5c158;
}

.product-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card p {
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e5c158 100%);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

/* Color Palette Section */
.palette-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0 3rem 0;
    text-align: center;
}

.palette-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.palette-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.color-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.color-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.color-swatch {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.color-card:hover .color-swatch {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.color-card p {
    color: var(--light-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.color-desc {
    display: block;
    color: #a0a0a0;
    font-size: 0.85rem;
    font-style: italic;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0 5rem 0;
    text-align: center;
}

.gallery-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.2rem;
    border: 2px dashed rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--light-gold);
    text-align: center;
    transition: var(--transition);
}

.photo-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.photo-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gallery-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.gallery-category {
    margin-bottom: 3rem;
}

.gallery-category h4 {
    font-size: 1.6rem;
    color: var(--light-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    background: rgba(212, 175, 55, 0.1);
}

.gallery-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    overflow: hidden;
}

.gallery-more-card {
    padding: 0;
    border-bottom: none;
    background: transparent;
}

.gallery-more-card .more-card-text {
    color: var(--light-gold);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    padding: 0 1rem;
}

.gallery-item .gallery-image.gallery-more-card {
    height: 100%;
    min-height: 200px;
    border-bottom: none;
    background: transparent;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.04);
}

.gallery-item:hover .gallery-image {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.gallery-item:hover .gallery-photo-placeholder {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.18);
}

.gallery-item p {
    padding: 1rem;
    color: var(--light-gold);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Catalog video styles */
.catalog-video-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 2.5rem 0;
}

.catalog-video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(212,175,55,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    background: #000;
}

@media (max-width: 700px) {
    .catalog-video {
        max-width: 100%;
        border-radius: 8px;
    }
}

/* Completed Works Section */
.completed-works-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0 5rem 0;
    text-align: center;
}

.completed-works-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.completed-works-section p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Facebook Button */
.facebook-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-weight: 600;
}

.facebook-button:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
}

.button-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.button-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #ffffff;
}

.button-text strong {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.facebook-button .external-link-icon {
    font-size: 1.3rem;
    margin-left: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.facebook-button:hover .external-link-icon {
    opacity: 1;
    transform: translate(3px, -3px);
}

/* Footer Social Links */
.footer-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-text-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 70%;
}

.footer-text-right p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-anpc-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.anpc-link {
    width: auto;
    min-width: 54px;
    height: 44px;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4af37 0%, #f2d46b 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.anpc-link:hover {
    background: linear-gradient(135deg, #e2bf45 0%, #f7dd7a 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.anpc-logo {
    display: block;
    height: 22px;
    width: auto;
    max-width: 100%;
}

/* Social Media Info Box - kept for other potential uses */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.reviews-intro {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e8e8e8;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    letter-spacing: 0.3px;
}

.reviews-intro strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.review-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-left: 5px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.review-card:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.reviewer-name {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-intro {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e8e8e8;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
    letter-spacing: 0.3px;
}

.contact-intro strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-box p {
    color: #d0d0d0;
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1.5px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: scale(1.02);
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Floating WhatsApp Button */
#whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    border: 3px solid #fff;
    animation: floatSubtle 3s ease-in-out infinite;
}

#whatsapp-button:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    #whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    #whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Gallery Modal Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 5% auto;
    padding: 2.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 50px rgba(212, 175, 55, 0.4);
    position: relative;
    animation: slideDown 0.3s ease;
}

.close-btn {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover,
.close-btn:focus {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.modal-image {
    font-size: 6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.modal-color-swatch {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.modal-title {
    text-align: center;
    color: var(--light-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 4px solid var(--secondary-color);
    padding: 2.5rem;
    text-align: center;
    color: #aaa;
    box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.15);
}

body:has(.reviews-section) .footer,
body:has(.contact-section) .footer {
    margin-top: 4.5rem;
}

.footer-policy-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.footer-policy-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f2d46b 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.footer-policy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 16px rgba(212, 175, 55, 0.3);
}

.policy-modal-body {
    color: #e6e6e6;
    line-height: 1.7;
    font-size: 0.98rem;
}

.policy-modal-body ul {
    margin: 0.5rem 0 0 1.1rem;
    padding: 0;
}

.policy-modal-body strong {
    color: var(--light-gold);
}

/* Mobile: make footer policy buttons stacked, equal width, centered and touch-friendly */
@media (max-width: 600px) {
    .cookie-consent {
        padding: 1rem;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-policy-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
        margin-bottom: 1rem;
    }

    .footer-policy-btn {
        width: calc(100% - 48px);
        max-width: 360px;
        min-height: 52px;
        padding: 0 18px;
        font-size: 1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    }

    .footer-policy-btn:hover {
        transform: translateY(0);
        box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
    }

    /* Ensure footer icons and other footer content keep their spacing */
    .footer-text-right {
        padding: 1rem 0 2rem 0;
    }

    /* Layout footer top on mobile: social icons and ANPC on same row, policy/text below */
    .footer-top {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px 16px;
        align-items: center;
        justify-items: center;
        width: 100%;
    }

    .footer-social-links {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        display: flex;
        gap: 14px;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        margin: 0;
    }

    .footer-anpc-link {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
    }

    .footer-text-right {
        grid-column: 1 / -1;
        grid-row: 2 / 3;
        width: 100%;
        text-align: center;
    }

    /* Adjust mobile spacing so social icons move slightly higher relative to buttons */
    .footer {
        padding-top: 4rem; /* reduced to move social area upward */
        padding-bottom: 3rem;
    }

    .footer-policy-links {
        margin-bottom: 1.2rem; /* keep a comfortable gap but smaller */
    }

    .footer-social-links {
        margin-top: 0; /* remove extra top margin so icons sit higher */
    }

    .footer-anpc-link {
        margin-bottom: 8px;
    }

    /* Mobile header: keep it compact, but slightly larger so text fits neatly */
    .navbar {
        padding: 0.16rem 0;
        border-bottom-width: 1px;
    }

    .nav-container {
        padding: 0 0.55rem;
        gap: 0.45rem;
    }

    .logo {
        font-size: 0.8rem;
        gap: 0.35rem;
        letter-spacing: 1px;
    }

    .logo-image {
        width: 20px;
        height: 20px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    /* Nav links: compact but readable */
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 3px 0 0 0;
    }

    .nav-menu li {
        flex: 0 0 calc(50% - 5px);
        list-style: none;
        text-align: center;
        margin: 0;
    }

    .nav-link {
        display: inline-block;
        width: 100%;
        padding: 0.15rem 0.25rem;
        font-size: 0.74rem;
        border-radius: 8px;
        box-shadow: none;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2100;
    background: rgba(12, 12, 12, 0.97);
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    padding: 1.2rem 1.5rem;
}

.cookie-consent__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cookie-consent__header h3 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cookie-consent p,
.cookie-consent li {
    color: #f1f1f1;
    font-size: 0.96rem;
    line-height: 1.6;
}

.cookie-consent__list {
    margin: 0;
    padding-left: 1.2rem;
}

.cookie-consent__legal {
    color: #d8d8d8;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-start;
    margin-top: 0.4rem;
}

.cookie-consent__customize {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-consent__options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #f1f1f1;
    font-size: 0.95rem;
}

.cookie-option input {
    accent-color: var(--secondary-color);
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn--primary {
    background: linear-gradient(135deg, #d4af37 0%, #f1d57a 100%);
    color: #111;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.cookie-btn--secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn--ghost {
    background: transparent;
    color: var(--light-gold);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-content p:first-child {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .contact-wrapper,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-text {
        grid-template-columns: 1fr;
    }

    .section-box,
    .intro-box,
    .motto-box {
        padding: 1.8rem !important;
        margin-bottom: 1.8rem !important;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .colors-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .color-swatch {
        height: 80px;
    }

    .color-card {
        padding: 1rem;
    }

    .palette-section {
        padding: 2rem;
    }

    .palette-section h3 {
        font-size: 1.6rem;
    }

    .gallery-section {
        padding: 2rem;
    }

    .gallery-section h3 {
        font-size: 1.6rem;
    }

    .gallery-category h4 {
        font-size: 1.3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-image {
        height: 150px;
        font-size: 3rem;
    }

    .completed-works-section {
        padding: 2rem;
    }

    .completed-works-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.45rem;
        padding: 0.5rem;
    }

    .logo {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .logo-image {
        width: 20px;
        height: 20px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        width: 100%;
    }

    .nav-link {
        padding: 0.15rem 0.25rem;
        font-size: 0.74rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .colors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .color-swatch {
        height: 70px;
    }

    .color-card p {
        font-size: 0.9rem;
    }

    .palette-section,
    .palette-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .palette-section h3 {
        font-size: 1.4rem;
    }

    .palette-section p {
        font-size: 0.95rem;
    }

    .gallery-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .gallery-section h3 {
        font-size: 1.4rem;
    }

    .gallery-section p {
        font-size: 0.95rem;
    }

    .gallery-category h4 {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-image {
        height: 120px;
        font-size: 2rem;
    }

    .gallery-item p {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .completed-works-section {
        padding: 1.5rem;
        margin: 2rem 0 5rem 0;
    }

    .completed-works-section h3 {
        font-size: 1.4rem;
    }

    .completed-works-section p {
        font-size: 0.95rem;
    }
}
