:root {
    --gold-primary: #a98329;
    --gold-light: #f9ea95;
    --gold-accent: #c6a64b;
    --gold-soft: #e4cc70;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #333333;
    --gray-light: #f8f8f8;
    --dark-blue: #1a2b4a;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10000;
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    position: relative;
    padding-bottom: 1.5rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    list-style: none;
    min-width: min(280px, calc(100vw - 30px));
    padding: 1rem 0;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
    background: transparent;
    z-index: 9998;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    padding-left: 2rem;
}

.btn-quote {
    background: var(--gold-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(169, 131, 41, 0.3);
}

.navbar-dark-blue {
    background: var(--dark-blue);
}

.navbar-dark-blue .nav-menu a {
    color: var(--white);
}

.navbar-dark-blue .nav-menu a:hover {
    color: var(--gold-light);
}

.navbar-dark-blue .dropdown-menu {
    background: var(--dark-blue);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark-blue .dropdown-menu a {
    color: var(--white);
}

.navbar-dark-blue .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    padding-left: 2rem;
}

.navbar-dark-blue .mobile-menu-toggle span {
    background: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero-subtitle-line {
    font-size: 1.8rem;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Smaller buttons only for the hero section */

.main-content-img {
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(169, 131, 41, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gold-primary);
}

.why-eleganza {
    padding: 6rem 0;
    background: var(--gray-light);
}

.mirror-glass-image {
    position: relative;
    display: inline-block;
}

.mirror-glass-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05));
    filter: blur(8px);
    opacity: 0.6;
    border-radius: 50%;
    pointer-events: none;
}

.eleganza-story {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-content h2 {
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.owner-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f9f5eb 100%);
    position: relative;
}

.owner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(169, 131, 41, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 234, 149, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.owner-image {
    position: relative;
}

.owner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold-accent);
    border-radius: 10px;
    z-index: 0;
}

.owner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(169, 131, 41, 0.2);
    position: relative;
    z-index: 1;
    border: 3px solid var(--white);
    transition: transform 0.3s ease;
}

.owner-image img:hover {
    transform: translateY(-5px);
}

.owner-content h2 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .owner-section .credentials {
        justify-content: center;
        gap: 1rem;
    }

    .owner-section .credentials img {
        max-width: 96px;
    }
}

.credential-badge {
    max-width: 180px;
    height: auto;
    background: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(169, 131, 41, 0.15);
}

.services-preview {
    padding: 6rem 0;
    background: var(--gray-light);
}

.services-preview h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 3rem;
}

.gallery-carousel {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-carousel h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 2rem;
}

.carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 100%;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .carousel {
        padding: 0 1.5rem;
    }

    .carousel-slide {
        height: clamp(300px, 55vw, 420px);
    }
}

@media (max-width: 640px) {
    .carousel {
        padding: 0 1rem;
    }

    .carousel-slide {
        height: clamp(220px, 70vw, 320px);
    }

    .carousel-control {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-control:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control.prev { left: 12px; }
.carousel-control.next { right: 12px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.carousel-dots button.active, .carousel-dots button:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--gold-accent);
}

.contact-section {
    padding: 6rem 0;
}

.contact-section h2 {
    text-align: center;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray-dark);
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-error {
    background: rgba(244, 67, 54, 0.12);
    border: 1px solid rgba(244, 67, 54, 0.35);
    color: #b71c1c;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-error[hidden] {
    display: none !important;
}

.captcha-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--gray-dark);
}

.captcha-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.captcha-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.honeypot-group {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.quote-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.quote-form input[type="file"] {
    padding: 0.85rem 1rem;
    background: var(--gray-light);
}

.quote-form .submit-btn {
    background: linear-gradient(135deg, var(--gold-primary) 0%, #c49b3a 100%);
    color: var(--white);
    padding: 1rem 2.75rem;
    border-radius: 50px;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(169, 131, 41, 0.3);
}

.quote-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 131, 41, 0.4);
}

.quote-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

@media (max-width: 768px) {
    .quote-form-grid,
    .quote-form-grid-3 {
        grid-template-columns: 1fr;
    }
}

.form-group textarea {
    resize: vertical;
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-section h4 {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.75rem;
    line-height: 1.8;
    display: block;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-section a:hover {
    color: var(--gold-light);
    padding-left: 4px;
    transition: all 0.3s ease;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    background: rgba(169, 131, 41, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-credentials {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    align-items: center;
}

.footer-badge {
    max-width: 135px;
    max-height: 75px;
    height: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-badge:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Compact footer responsive refinements */
@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    .footer-logo {
        max-width: 160px;
    }
    .footer-badge {
        max-width: 120px;
        max-height: 67px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-logo {
        max-width: 150px;
    }
    .footer-badge {
        max-width: 110px;
        max-height: 62px;
    }
    .footer-section {
        text-align: center;
    }
    .footer-section h4 {
        font-size: 1rem;
    }
    .social-links {
        justify-content: center;
    }
    .footer-credentials {
        justify-content: center;
    }
    .footer-bottom {
        padding-top: 1.5rem;
    }
}

.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-hero h1 {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-section {
    padding: 4rem 0;
}

.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.editorial-intro {
    max-width: 800px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.editorial-content {
    max-width: 1100px;
    margin: 0 auto;
}

.editorial-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(169, 131, 41, 0.15);
}

.editorial-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.editorial-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.editorial-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-accent);
    line-height: 1;
    opacity: 0.6;
}

.editorial-item h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy-dark);
    margin: 0;
    line-height: 1.3;
}

.editorial-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.editorial-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.editorial-with-image:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.editorial-with-image:nth-child(even) .editorial-text {
    order: 2;
}

.editorial-with-image:nth-child(even) .editorial-image {
    order: 1;
}

.editorial-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.editorial-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.editorial-text p:last-child {
    margin-bottom: 0;
}

.editorial-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 992px) {
    .editorial-with-image,
    .editorial-with-image:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .editorial-with-image:nth-child(even) .editorial-text,
    .editorial-with-image:nth-child(even) .editorial-image {
        order: 0;
    }
    
    .editorial-item h3 {
        font-size: 1.4rem;
    }
    
    .editorial-text h3 {
        font-size: 1.6rem;
    }
    
    .editorial-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3.5rem 0;
    }
    
    .editorial-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .editorial-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .editorial-item h3 {
        font-size: 1.3rem;
    }
    
    .editorial-text h3 {
        font-size: 1.4rem;
    }
    
    .editorial-item p,
    .editorial-text p {
        font-size: 1rem;
    }
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--gold-primary);
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 9999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .navbar-dark-blue .nav-menu {
        background: var(--dark-blue);
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 10001;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
    }
    
    .dropdown > a {
        padding-bottom: 0.75rem;
        position: relative;
        padding-right: 2rem;
    }
    
    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .dropdown.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown::before {
        display: none;
    }
    
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
        opacity: 1;
        transform: none;
        transition: none;
        pointer-events: auto;
        background: transparent;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }
    
    .btn-quote {
        display: inline-block;
        text-align: center;
        margin-top: 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .owner-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 50px;
    }
}

/* ========================================
   SERVICE PAGE CAROUSEL - ELEGANT & LUXURY
   ======================================== */

.service-carousel-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.service-carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ========================================
   COMPACT SERVICE CAROUSEL - AFTER GET IN TOUCH
   ======================================== */

.compact-carousel-section {
    padding: 4rem 0;
    background: var(--white);
}

.compact-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.compact-carousel-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
}

.compact-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.compact-carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.compact-carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.compact-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.compact-carousel-slide:hover img {
    transform: scale(1.03);
}

/* Subtle overlay */
.compact-carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Compact Navigation Arrows */
.compact-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.compact-carousel-wrapper:hover .compact-carousel-arrow {
    opacity: 1;
}

.compact-carousel-arrow:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.compact-carousel-arrow.prev {
    left: 20px;
}

.compact-carousel-arrow.next {
    right: 20px;
}

/* Compact Navigation Dots */
.compact-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.compact-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5d5d5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.compact-carousel-dot:hover {
    background: var(--gold-accent);
    transform: scale(1.15);
}

.compact-carousel-dot.active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 5px;
}

/* Mobile Responsiveness for Compact Carousel */
@media (max-width: 968px) {
    .compact-carousel-section {
        padding: 3rem 0;
    }
    
    .compact-carousel-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .compact-carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .compact-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .compact-carousel-arrow.prev {
        left: 12px;
    }
    
    .compact-carousel-arrow.next {
        right: 12px;
    }
}

@media (max-width: 640px) {
    .compact-carousel-wrapper {
        border-radius: 10px;
    }
    
    .compact-carousel-slide {
        aspect-ratio: 1 / 1;
    }
    
    .compact-carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        opacity: 0.85;
    }
    
    .compact-carousel-arrow.prev {
        left: 8px;
    }
    
    .compact-carousel-arrow.next {
        right: 8px;
    }
    
    .compact-carousel-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .compact-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .compact-carousel-dot.active {
        width: 22px;
    }
}

.service-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-carousel-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-carousel-slide:hover img {
    transform: scale(1.05);
}

/* Elegant gradient overlay */
.service-carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Navigation Arrows */
.service-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-carousel-wrapper:hover .service-carousel-arrow {
    opacity: 1;
}

.service-carousel-arrow:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.service-carousel-arrow.prev {
    left: 30px;
}

.service-carousel-arrow.next {
    right: 30px;
}

/* Navigation Dots */
.service-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.service-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-carousel-dot:hover {
    background: var(--gold-accent);
    transform: scale(1.2);
}

.service-carousel-dot.active {
    background: var(--gold-primary);
    width: 32px;
    border-radius: 6px;
}

/* Optional Caption */
.service-carousel-caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-carousel-slide.active .service-carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .service-carousel-section {
        padding: 3rem 0;
    }
    
    .service-carousel-slide {
        aspect-ratio: 4 / 3;
    }
    
    .service-carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .service-carousel-arrow.prev {
        left: 15px;
    }
    
    .service-carousel-arrow.next {
        right: 15px;
    }
    
    .service-carousel-caption {
        font-size: 1.2rem;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 640px) {
    .service-carousel-wrapper {
        border-radius: 12px;
    }
    
    .service-carousel-slide {
        aspect-ratio: 1 / 1;
    }
    
    .service-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 0.8;
    }
    
    .service-carousel-arrow.prev {
        left: 10px;
    }
    
    .service-carousel-arrow.next {
        right: 10px;
    }
    
    .service-carousel-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }
    
    .service-carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .service-carousel-dot.active {
        width: 24px;
    }
}

/* ========================================
   AREAS WE SERVE - LOCAL SEO SECTION
   ======================================== */
.areas-we-serve {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
    position: relative;
}

.areas-we-serve .container {
    max-width: 1100px;
}

.areas-we-serve .areas-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.areas-we-serve .areas-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.areas-we-serve .areas-header h2 .accent {
    color: var(--gold-primary);
    font-style: italic;
}

.areas-we-serve .areas-header .areas-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.25rem auto 1.5rem;
    border: 0;
}

.areas-we-serve .areas-intro {
    max-width: 780px;
    margin: 0 auto;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
}

.areas-we-serve .areas-intro strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.areas-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.areas-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(169, 131, 41, 0.12);
}

.areas-card .areas-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.areas-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gray-dark);
    margin-bottom: 1.1rem;
    line-height: 1.3;
}

.areas-card .areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem 0.45rem;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .areas-card .areas-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .areas-card .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .areas-card .areas-list {
        grid-template-columns: 1fr;
    }
}

.areas-card .city {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
    background: #fbfaf6;
    border: 1px solid #eee6cf;
    border-radius: 8px;
    color: var(--gray-dark);
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.areas-card .city::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-accent);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.areas-card .city:hover {
    background: var(--white);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(169, 131, 41, 0.12);
}

.areas-card .city:hover::before {
    background: var(--gold-primary);
    transform: scale(1.3);
}

.areas-card.primary-card {
    background: linear-gradient(180deg, #fffdf6 0%, #fbf4de 100%);
    border-color: #f0e4b8;
}

.areas-card.primary-card .city {
    background: rgba(255, 255, 255, 0.7);
    border-color: #f0e4b8;
}

.areas-card.primary-card .city::before {
    background: var(--gold-primary);
}

.areas-card.primary-card .city:hover {
    background: var(--white);
    border-color: var(--gold-primary);
}

.areas-services-block {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid #eee6cf;
    border-bottom: 1px solid #eee6cf;
}

.areas-services-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    max-width: 860px;
    margin: 0 auto;
}

.areas-services-block p strong {
    color: var(--gray-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .areas-we-serve {
        padding: 4rem 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .areas-card {
        padding: 1.75rem 1.5rem;
    }

    .areas-card h3 {
        font-size: 1.2rem;
    }

    .areas-card .city {
        font-size: 0.88rem;
        padding: 0.5rem 0.7rem;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/13-768x768.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.portfolio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.85) 0%, rgba(169, 131, 41, 0.75) 100%);
    z-index: 2;
}

.portfolio-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.portfolio-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.portfolio-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.portfolio-intro {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

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

.portfolio-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.portfolio-filter {
    padding: 2rem 0 3rem;
    background: #fbfaf6;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 0.65rem 1.5rem;
    background: var(--white);
    border: 2px solid #eee6cf;
    border-radius: 30px;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(169, 131, 41, 0.2);
}

.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(169, 131, 41, 0.3);
}

.filter-btn i {
    margin-left: 0.4rem;
    font-size: 0.85rem;
}

.filter-dropdown {
    display: none;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee6cf;
}

.filter-dropdown.show {
    display: flex;
}

.portfolio-gallery {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
}

.city-section {
    margin-bottom: 5rem;
}

.city-section:last-child {
    margin-bottom: 0;
}

.city-header {
    text-align: center;
    margin-bottom: 3rem;
}

.city-header h2 {
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.city-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-accent) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    background: var(--white);
}

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

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

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

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item.placeholder {
    background: linear-gradient(135deg, #f8f8f8 0%, #fbfaf6 100%);
    border: 2px dashed #eee6cf;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.placeholder:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    text-align: center;
    color: #999;
}

.placeholder-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.placeholder-content p {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        height: 50vh;
        min-height: 400px;
    }

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

    .portfolio-hero-subtitle {
        font-size: 1.1rem;
    }

    .portfolio-intro {
        padding: 3rem 0 1.5rem;
    }

    .portfolio-intro-content p {
        font-size: 1rem;
    }

    .portfolio-filter {
        padding: 1.5rem 0 2rem;
    }

    .filter-wrapper {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .city-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-content h1 {
        font-size: 2.2rem;
    }

    .portfolio-hero-subtitle {
        font-size: 1rem;
    }

    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .city-header h2 {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-overlay i {
        font-size: 2.5rem;
    }
}
 
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .effective-date {
    margin-bottom: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.legal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee6cf;
    margin-top: 1.25rem;
}

.legal-card h3 {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.legal-list {
    padding-left: 1.25rem;
}

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

/* Responsive enhancements for common two-column sections */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .about-content-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .owner-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Fallback override for inline grid declarations on small screens */
@media (max-width: 992px) {
    .content-section .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}


.debug-outline * {
    outline: 1px dashed rgba(255, 0, 150, 0.35);
}

