:root {
    --primary: #1a2744;
    --primary-light: #2a3f6b;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --accent: #e67e22;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --shadow: 0 10px 40px rgba(26, 39, 68, 0.12);
    --radius: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 12px 0;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: 8px;
}

.nav-main {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-self: center;
    grid-column: 2;
}

.header-contact {
    justify-self: end;
    grid-column: 3;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-cta-mobile { display: none; }

.nav a {
    color: var(--primary);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.15);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1e3a5f 100%);
    color: var(--white);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    padding: 0;
    min-height: 480px;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.78) 50%, rgba(26,39,68,0.65) 100%);
    padding: 45px 0 55px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-social {
    margin-bottom: 20px;
}

.hero-social .social-links {
    justify-content: flex-start;
}

.hero::before {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212,160,23,0.4);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-image {
    text-align: center;
    animation: pulse 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    max-height: 400px;
    margin: 0 auto;
    object-fit: cover;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
    border-radius: 16px;
    border: 2px solid rgba(212, 160, 23, 0.35);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,160,23,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.product-pdf-link {
    margin: 10px 0;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(212,160,23,0.12);
    border: 1px solid rgba(212,160,23,0.4);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pdf-link:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.pdf-link .pdf-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Sections */
.section { padding: 40px 0; }

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

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,39,68,0.18);
}

.card-img {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ecf1, #d5dce6);
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-body { padding: 22px; }

.card-body h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.card-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Category Section */
.category-block {
    margin-bottom: 30px;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212,160,23,0.3);
}

.category-title h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.category-title a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.category-title a:hover { color: var(--accent); }

/* Reels */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.reel-card {
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.reel-card:hover { transform: scale(1.03); }

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(212,160,23,0.95);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: none;
    transition: var(--transition);
}

.reel-card.playing .reel-play-btn { opacity: 0; visibility: hidden; }

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
}

.contact-info h3 { color: var(--gold); margin-bottom: 25px; font-size: 1.4rem; }

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(212,160,23,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,160,23,0.15);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { opacity: 0.85; }

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.about-text h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 15px; }
.about-text p { color: var(--text-light); margin-bottom: 15px; }

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(26,39,68,0.9));
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Privacy */
.privacy-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 { color: var(--primary); margin: 25px 0 12px; font-size: 1.3rem; }
.privacy-content p { color: var(--text-light); margin-bottom: 15px; }

/* Long-form SEO copy (home + about). Narrow measure keeps it readable. */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.seo-content strong { color: var(--primary); }

/* Footer */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 { color: var(--gold); margin-bottom: 20px; font-size: 1.1rem; }

.footer-logo {
    margin-bottom: 15px;
}

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

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 15px; }

.not-found-state {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 50px 30px;
}

.not-found-state h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 10px; }

/* Info Cards */
.info-cards-section {
    background: var(--white);
    padding: 35px 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.info-card {
    background: var(--cream);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.info-card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.info-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Promo Banners */
.promo-banner {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.promo-overlay {
    min-height: 320px;
    background: linear-gradient(135deg, rgba(26,39,68,0.88) 0%, rgba(26,39,68,0.65) 50%, rgba(212,160,23,0.35) 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.promo-content {
    color: white;
    max-width: 650px;
}

.promo-tag {
    display: inline-block;
    background: rgba(212,160,23,0.25);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 14px;
    line-height: 1.2;
}

.promo-content p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-alt { background: var(--white); }

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
    padding: 45px 0 50px;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 10px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-btn-wrap {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
}

.card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: #ccc;
    background: linear-gradient(135deg, #e8ecf1, #d5dce6);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(212,160,23,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold) !important;
    transition: var(--transition);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary) !important;
    transform: translateY(-3px);
    border-color: var(--gold);
}

.social-icon.social-wa:hover {
    background: #25d366;
    color: white !important;
    border-color: #25d366;
}

.footer .social-icon {
    background: rgba(212,160,23,0.12);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
}

.review-card:hover { transform: translateY(-5px); }

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 60px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author strong { display: block; color: var(--primary); }
.review-author span { font-size: 0.85rem; color: var(--text-light); }

/* Rating summary (reviews page) */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.rating-stars-big {
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.rating-count {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.faq-list-compact { max-width: 900px; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: 0 2px 15px rgba(26,39,68,0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    font-family: inherit;
    gap: 15px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(212,160,23,0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--gold);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
}

.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--primary); transform: translateY(-3px); }

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .about-content, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-image { order: -1; }
    .hero-image img { max-height: 280px; object-fit: contain; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        grid-column: 3;
        justify-self: end;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .logo img { height: 44px; }

    .header-contact { display: none; }

    .nav-cta-mobile { display: block; }

    .nav-main {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        grid-column: auto;
        justify-self: stretch;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .nav-main.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-main a { width: 100%; text-align: center; color: rgba(255,255,255,0.9); }
    .nav-main a:hover, .nav-main a.active { color: white; background: rgba(212,160,23,0.2); }
    .nav-main .nav-cta-mobile { margin-top: 8px; }

    .section { padding: 32px 0; }
    .features-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 70px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-info, .form-card { padding: 25px; }
    .privacy-content { padding: 25px; }
    .promo-banner { background-attachment: scroll; min-height: 260px; }
    .promo-overlay { min-height: 260px; padding: 40px 0; }
    .info-cards-section { margin-top: 0; padding: 35px 0; }
}

@media (max-width: 480px) {
    .card-grid, .reels-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

/* Products page layout */
.products-layout {
    display: grid;
    grid-template-columns: 3fr 9fr;
    gap: 30px;
    align-items: start;
}

.products-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.products-sidebar h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212,160,23,0.3);
}

.category-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-filter-list li { margin-bottom: 4px; }

.category-filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.92rem;
    transition: var(--transition);
}

.category-filter-list a:hover,
.category-filter-list a.active {
    background: rgba(212,160,23,0.15);
    color: var(--primary);
    font-weight: 600;
}

.category-filter-list a span {
    background: var(--cream);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-filter-list a.active span {
    background: var(--gold);
    color: var(--primary);
}

.sidebar-contact {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.sidebar-contact p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.products-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.products-filter-title h2 {
    color: var(--primary);
    font-size: 1.5rem;
}

.products-filter-title a {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,39,68,0.15);
}

.product-card-img {
    height: 190px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8ecf1, #d5dce6);
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-desc-wrap { margin-bottom: 12px; flex: 1; }

.product-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 4px 0 0;
    font-family: inherit;
}

.read-more-btn:hover { color: var(--accent); }

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.card-price-muted { color: var(--text-light); font-size: 0.9rem; }

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
}

.products-contact-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.products-contact-banner p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.pagination-wrap { margin-top: 30px; }

.frontend-pagination ul {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.frontend-pagination a,
.frontend-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 2px solid #e0e6ed;
    color: var(--primary);
    background: var(--white);
    transition: var(--transition);
    font-weight: 600;
}

.frontend-pagination a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.frontend-pagination .active span {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.frontend-pagination .disabled span { opacity: 0.45; }

/* Project detail */
.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.project-main-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--cream);
}

.project-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.project-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.project-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    transition: var(--transition);
    aspect-ratio: 1;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-thumb:hover,
.project-thumb.active {
    border-color: var(--gold);
    transform: scale(1.03);
}

.project-detail-info h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.project-description {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.project-description-muted {
    color: var(--text-light);
    margin-bottom: 28px;
}

.project-inquiry-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--gold);
}

.project-inquiry-box h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.project-inquiry-box p {
    color: var(--text-light);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

/* Inquiry modal */
.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.inquiry-modal.open { display: flex; }

.inquiry-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,39,68,0.6);
    backdrop-filter: blur(4px);
}

.inquiry-modal-box {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeUp 0.3s ease;
}

.inquiry-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.inquiry-modal-close:hover { color: var(--primary); }

.inquiry-modal-box h3 {
    color: var(--primary);
    margin-bottom: 16px;
    padding-right: 30px;
}

.inquiry-modal-box .form-group {
    margin-bottom: 14px;
}

.inquiry-modal-box .form-group:last-of-type {
    margin-bottom: 8px;
}

.inquiry-modal-box .btn {
    margin-top: 4px;
}

/* Contact page */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26,39,68,0.12);
    border-color: rgba(212,160,23,0.4);
}

.contact-card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

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

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--gold);
    font-weight: 600;
}

.contact-card a:hover { color: var(--accent); }

.contact-main-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 30px;
    align-items: stretch;
}

.contact-map-wrap {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.contact-map-iframe {
    width: 100%;
    flex: 1;
    min-height: 360px;
    border: 0;
    display: block;
}

.contact-map-link {
    margin: 14px 16px 16px;
    align-self: center;
}

.contact-form-col .form-card {
    height: 100%;
}

.contact-form-title {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.contact-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

/* Simple contact */
.contact-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-simple-info {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

@media (max-width: 992px) {
    .products-layout { grid-template-columns: 1fr; }
    .products-sidebar { position: static; }
    .project-detail-grid { grid-template-columns: 1fr; }
    .project-main-image img { height: 300px; }
    .contact-simple-grid { grid-template-columns: 1fr; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-map-iframe { min-height: 280px; }
}

@media (max-width: 576px) {
    .project-gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .product-card-footer { flex-wrap: wrap; }
}

/* Rich text from the admin CKEditor (product / project descriptions) */
.rich-content { line-height: 1.7; }
.rich-content p { margin: 0 0 0.75em; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content ul,
.rich-content ol { margin: 0 0 0.75em; padding-left: 1.25em; }
.rich-content li { margin-bottom: 0.25em; }
.rich-content h2,
.rich-content h3,
.rich-content h4 { margin: 1em 0 0.5em; line-height: 1.3; }
.rich-content a { text-decoration: underline; }
.rich-content img { max-width: 100%; height: auto; }
.rich-content blockquote {
    margin: 0 0 0.75em;
    padding-left: 1em;
    border-left: 3px solid #ddd;
    color: #666;
}
.rich-content table { width: 100%; border-collapse: collapse; margin-bottom: 0.75em; }
.rich-content th,
.rich-content td { border: 1px solid #ddd; padding: 6px 10px; }
