/* Reset e stili di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

#main-container {
    overflow-x: hidden;
}

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

/* Header */
#header {
    background: #fff;
}

.header-top {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.header-top .container {
    display: flex;
    justify-content: center;
}

.site-branding img {
    max-width: 100%;
    height: auto;
    width: 300px;
}

.header-middle {
    padding: 15px 0;
}

.header-middle .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Menu di navigazione */
#header-menu .menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

#header-menu .menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.06em;
    font-size: 0.875rem;
    text-transform: uppercase;
}

#header-menu .menu li a:hover,
#header-menu .menu li.current-menu-item a {
    color: #ae873b;
}

/* Pulsante CTA */
.cta-button,
.ct-button {
    display: inline-block;
    background: #ae873b;
    color: #efe6d4 !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.06em;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.cta-button:hover,
.ct-button:hover {
    background: #5d5142;
    box-shadow: 0 6px 18px rgba(93, 81, 66, 0.3);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    background-image: url('https://res.cloudinary.com/valentina-cortini/image/upload/f_auto,q_auto/IMG_2757_are1ld');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 770px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

/* Sezioni generali */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.03em;
    position: relative;
    padding-bottom: 18px;
}

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

/* Griglie */
.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.columns-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Mission Section */
.mission-section {
    background: #c6bba5;
    padding: 0;
}

.mission-section .columns-3 {
    gap: 0;
}

.mission-text,
.philosophy-text {
    padding: 50px;
    text-align: center;
    color: #fff;
}

.icon-container {
    margin-bottom: 30px;
}

.icon-container svg {
    width: 100px;
    height: 100px;
}

.mission-image img,
.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Philosophy Section */
.philosophy-section {
    background: #a59586;
    padding: 0;
}

.philosophy-section .columns-2 {
    gap: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 20px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-item {
    text-align: center;
}

.portfolio-item p {
    font-family: 'Playfair Display', serif;
    color: #ae873b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 12px;
}

.image-frame {
    border: 3px solid #ae873b;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(174, 135, 59, 0.15);
}

.image-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

/* Showcase Section */
.showcase-section {
    background: #efe6d4;
    text-align: center;
}

.showcase-section p {
    max-width: 800px;
    margin: 0 auto 30px;
}

.showcase-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 40px 0 20px;
}

.download-icon {
    margin: 30px 0;
}

.download-icon svg {
    width: 50px;
    height: 50px;
}

/* About Section */
.about-section {
    padding: 0;
}

.about-section .columns-2 {
    gap: 0;
}

.gold-bg {
    background: #ae873b;
    padding: 50px;
    text-align: center;
}

.white-text {
    color: #fff !important;
}

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

/* Contact Section */
.contact-section {
    background: #efe6d4;
    padding: 0;
}

.contact-info {
    padding: 50px;
    text-align: center;
}

.map-container {
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 445px;
    border: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group .required {
    color: #ae873b;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group small {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group.consent label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.form-group.consent input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.form-group.consent a {
    color: #ae873b;
    text-decoration: none;
}

.form-group.consent a:hover {
    text-decoration: underline;
}

.submit-button {
    background: #ae873b;
    color: #efe6d4;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #5d5142;
}

/* Footer */
#footer {
    background: #333;
    color: #fff;
}

.footer-top {
    padding: 40px 0;
    text-align: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-middle {
    padding: 40px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

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

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ae873b;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #ae873b;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Utility */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {

    .columns-2,
    .columns-3,
    .portfolio-grid,
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-middle .container {
        flex-direction: column;
        gap: 15px;
    }

    #header-menu .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .mission-text,
    .philosophy-text,
    .gold-bg,
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }

    .hero-content h2 {
        font-size: 1.75rem;
        letter-spacing: 0.02em;
    }

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

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

/* Mission & Philosophy 2x2 Grid */
.mission-philosophy-grid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 100vh;
    /* Occupa tutta l'altezza dello schermo */
    width: 100%;
}

.grid-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

/* Blocchi di testo */
.block-text {
    background-color: #c6bba5;
    /* Colore della mission section originale */
    color: white;
    text-align: center;
}

.block-1 {
    background-color: #c6bba5;
    /* Colore mission */
}

.block-4 {
    background-color: #a59586;
    /* Colore philosophy */
}

.block-content {
    max-width: 500px;
    margin: 0 auto;
}

.block-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Icone bianche */
.white-icon i {
    color: white !important;
    margin-bottom: 30px;
    display: inline-block;
}

/* Blocchi immagine */
.block-image {
    padding: 0;
    background-color: #f5f5f5;
}

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

/* Responsive */
@media (max-width: 768px) {
    .grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .grid-block {
        min-height: 400px;
    }

    .block-image {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .block-content p {
        font-size: 1rem;
    }
}

/* Meet Valentina 2x2 Grid */
.meet-valentina-grid {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Riutilizza la stessa struttura grid */
.meet-valentina-grid .grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
}

.meet-valentina-grid .grid-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

/* Blocco testo Valentina */
.meet-valentina-grid .block-text-valentina {
    background-color: #ae873b;
    /* Oro/terra - caldo e professionale */
    color: white;
    text-align: center;
}

.meet-valentina-grid .block-text-valentina h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.meet-valentina-grid .block-text-valentina p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: white;
}

.meet-valentina-grid .block-text-valentina p:last-child {
    margin-bottom: 0;
}

/* Icona bianca */
.meet-valentina-grid .white-icon i {
    color: white !important;
    margin-bottom: 20px;
    display: inline-block;
}

/* Blocchi immagine Valentina */
.meet-valentina-grid .block-image-valentina {
    padding: 0;
}

.meet-valentina-grid .grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blocco decorativo (citazione) */
.meet-valentina-grid .block-decorative {
    background-color: #5d5142;
    /* Marrone scuro/terra */
    color: white;
    text-align: center;
}

.decorative-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decorative-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    max-width: 300px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .meet-valentina-grid .grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .meet-valentina-grid .grid-block {
        min-height: 450px;
        padding: 30px;
    }

    .meet-valentina-grid .block-image-valentina {
        min-height: 350px;
    }

    .meet-valentina-grid .block-text-valentina h2 {
        font-size: 1.8rem;
    }

    .decorative-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .meet-valentina-grid .block-text-valentina p {
        font-size: 1rem;
    }
}

/* ========================================
   GET IN TOUCH SECTION - PROPORZIONI OTTIMIZZATE
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #efe6d4 100%);
    padding: 80px 0;
    width: 100%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header della sezione */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-icon-header {
    margin-bottom: 20px;
}

.contact-icon-header i {
    color: #ae873b;
    font-size: 3rem;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

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

.contact-intro {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: #5d5142;
    line-height: 1.8;
}

/* Riga principale - Griglia 50/50 */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Colonna sinistra - Info e mappa */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mappa */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

/* Card indirizzo */
.address-card,
.hours-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #ae873b;
}

.address-card:hover,
.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(174, 135, 59, 0.15);
}

.address-icon,
.hours-icon {
    width: 50px;
    height: 50px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-icon i,
.hours-icon i {
    color: white;
    font-size: 1.5rem;
}

.address-details h4,
.hours-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.address-details p,
.hours-details p {
    color: #5d5142;
    line-height: 1.6;
    margin-bottom: 10px;
}

.map-link {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.map-link:hover {
    gap: 12px;
    color: #5d5142;
}

/* Colonna destra - Form */
.contact-form-col {
    height: 100%;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ae873b;
}

/* Stili del form */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group label i {
    color: #ae873b;
    width: 20px;
}

.required {
    color: #ae873b;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ae873b;
    background: white;
    box-shadow: 0 0 0 4px rgba(174, 135, 59, 0.1);
}

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

.char-counter {
    display: block;
    text-align: right;
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Checkbox personalizzato */
.consent-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ae873b;
    cursor: pointer;
}

.consent-text {
    color: #5d5142;
    font-size: 0.95rem;
}

.consent-text a {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

/* Pulsante submit */
.submit-button {
    background: #ae873b;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}

.submit-button:hover {
    background: #5d5142;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(93, 81, 66, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button i {
    font-size: 1.2rem;
}

/* Messaggio di successo */
.form-success {
    text-align: center;
    padding: 40px 20px;
    background: #f0f8f0;
    border-radius: 16px;
    margin-top: 20px;
}

.form-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-success p {
    font-size: 1.2rem;
    color: #333;
}

/* Campo nascosto anti-spam */
.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        padding: 0 20px;
    }

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

    .form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .address-card,
    .hours-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 15px;
    }

    .form-card {
        padding: 20px;
    }

    .submit-button {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #c6bba5 0%, #a59586 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 100px 100px;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero-icon {
    margin-bottom: 30px;
}

.services-hero-icon i {
    color: white;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Intro Section */
.services-intro {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-icon {
    color: #ae873b;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5d5142;
    margin-top: 30px;
}

/* Services Grid Section */
.services-grid-section {
    padding: 0 0 80px 0;
    background: white;
}

.services-grid-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(174, 135, 59, 0.15);
    border-color: #ae873b;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

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

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

.service-content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    background: white;
    flex: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 20px;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(174, 135, 59, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
    background: #5d5142;
}

.service-icon i {
    color: white;
    font-size: 2rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

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

.service-description {
    color: #5d5142;
    line-height: 1.8;
    font-size: 1rem;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #5d5142 0%, #3d3d3d 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    color: #ae873b;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Responsive per Services */
@media (max-width: 992px) {
    .services-grid-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .services-hero-title {
        font-size: 2.8rem;
    }

    .services-hero-text {
        font-size: 1.1rem;
    }

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

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 0;
    }

    .services-hero-title {
        font-size: 2.2rem;
    }

    .services-hero-icon i {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 3rem;
    }

    .services-intro {
        padding: 60px 0;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 30px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .services-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

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

    .service-icon {
        width: 70px;
        height: 70px;
        margin-top: -70px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   GET IN TOUCH PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #a59586 0%, #c6bba5 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="2"/><path d="M20,20 L80,80 M80,20 L20,80" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 100px 100px;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-icon {
    margin-bottom: 30px;
}

.contact-hero-icon i {
    color: white;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-cards {
    padding: 80px 0 40px;
    background: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(174, 135, 59, 0.15);
    border-color: #ae873b;
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: rotate(360deg);
    background: #5d5142;
}

.info-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.info-card-text {
    color: #5d5142;
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-card-link {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 5px;
}

.info-card-link:hover {
    color: #5d5142;
}

/* Contact Main Section */
.contact-main {
    padding: 40px 0 80px;
    background: white;
}

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

/* Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header-icon {
    font-size: 2.5rem;
    color: #ae873b;
    margin-bottom: 15px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #5d5142;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form label i {
    color: #ae873b;
    width: 20px;
}

.required {
    color: #ae873b;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ae873b;
    background: white;
    box-shadow: 0 0 0 4px rgba(174, 135, 59, 0.1);
}

.consent-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ae873b;
    cursor: pointer;
}

.consent-text {
    color: #5d5142;
    font-size: 0.95rem;
    line-height: 1.5;
}

.consent-text a {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
}

.consent-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #ae873b;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid transparent;
}

.submit-btn:hover {
    background: #5d5142;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(93, 81, 66, 0.3);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Right Column - Contact Details */
.contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

/* Hours Card (reuse from previous, but enhanced) */
.contact-details-wrapper .hours-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 135, 59, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-details-wrapper .hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(174, 135, 59, 0.15);
    border-color: #ae873b;
}

.contact-details-wrapper .hours-icon {
    width: 60px;
    height: 60px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details-wrapper .hours-icon i {
    color: white;
    font-size: 1.5rem;
}

.hours-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    color: #5d5142;
    padding-bottom: 8px;
    border-bottom: 1px dashed #e5e5e5;
}

.hours-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hours-list li span:first-child {
    font-weight: 600;
}

/* Social Contact */
.social-contact {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.social-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ae873b;
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #ae873b;
    color: white;
    transform: translateY(-5px);
}

/* FAQ Section */
.contact-faq {
    padding: 60px 0 80px;
    background: #f8f5f0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #ae873b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    font-size: 0.8rem;
}

.faq-answer {
    color: #5d5142;
    line-height: 1.7;
    padding-left: 25px;
}

/* Hidden honeypot field */
.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-hero-title {
        font-size: 2.8rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-icon i {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .form-title {
        font-size: 1.8rem;
    }

    .contact-details-wrapper .hours-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hours-list li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

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

    .contact-hero-text {
        font-size: 1rem;
    }

    .info-card {
        padding: 30px 20px;
    }

    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

/* ========================================
   PRIVACY POLICY PAGE STYLES
   ======================================== */

/* Legal Hero Section (reuse contact hero but customize) */
.legal-hero {
    background: linear-gradient(135deg, #5d5142 0%, #3d3d3d 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M50,15 L85,50 L50,85 L15,50 Z" fill="none" stroke="white" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 80px 80px;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-hero-icon {
    margin-bottom: 25px;
}

.legal-hero-icon i {
    color: white;
    font-size: 3.5rem;
    background: rgba(174, 135, 59, 0.3);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.legal-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 15px;
}

.legal-last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Legal Content Section */
.legal-content-section {
    padding: 60px 0 80px;
    background: #f8f5f0;
}

.legal-content-wrapper {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 135, 59, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(174, 135, 59, 0.1);
}

.legal-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

/* Table of Contents */
.legal-toc {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    border-left: 4px solid #ae873b;
}

.legal-toc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-toc h3 i {
    color: #ae873b;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.legal-toc li {
    margin: 0;
}

.legal-toc a {
    color: #5d5142;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s, transform 0.3s;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 1px dotted transparent;
}

.legal-toc a:hover {
    color: #ae873b;
    border-bottom-color: #ae873b;
    transform: translateX(5px);
}

/* Legal Sections */
.legal-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(174, 135, 59, 0.2);
}

.legal-section-title .section-number {
    color: #ae873b;
    margin-right: 10px;
    font-weight: 700;
}

.legal-section-content {
    padding-left: 20px;
}

.legal-section-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5d5142;
    margin: 25px 0 15px;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.legal-list li::before {
    content: '▹';
    color: #ae873b;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Info Box */
.info-box {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(174, 135, 59, 0.2);
}

.info-box p {
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box a {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Important Note */
.important-note {
    background: #fff3e0;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #ae873b;
}

.important-note p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.important-note i {
    color: #ae873b;
    font-size: 1.3rem;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 25px 0;
}

.purpose-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.purpose-item i {
    color: #ae873b;
    font-size: 1.2rem;
    margin-top: 3px;
}

.purpose-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.purpose-item p {
    color: #5d5142;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Rights Cards */
.rights-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.right-card {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(174, 135, 59, 0.1);
    border-color: #ae873b;
}

.right-card i {
    font-size: 2rem;
    color: #ae873b;
    margin-bottom: 15px;
}

.right-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.right-card p {
    color: #5d5142;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cookies-table thead {
    background: #ae873b;
    color: white;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 15px;
    background: #f8f5f0;
    border-bottom: 1px solid #e5e5e5;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-link {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.cookie-settings-link:hover {
    gap: 12px;
    color: #5d5142;
}

/* Contact Card Large */
.contact-card-large {
    display: flex;
    gap: 30px;
    background: #f8f5f0;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(174, 135, 59, 0.2);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: white;
    font-size: 2.5rem;
}

.contact-card-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-details i {
    color: #ae873b;
    width: 20px;
}

.contact-card-details a {
    color: #5d5142;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-details a:hover {
    color: #ae873b;
}

/* Legal CTA Section */
.legal-cta {
    background: linear-gradient(135deg, #ae873b 0%, #5d5142 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.legal-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.legal-cta .cta-icon {
    color: white;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.legal-cta .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.legal-cta .cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.legal-cta .cta-button {
    background: white;
    color: #ae873b !important;
}

.legal-cta .cta-button:hover {
    background: #5d5142;
    color: white !important;
}

/* Responsive */
@media (max-width: 992px) {
    .legal-content-wrapper {
        padding: 40px;
    }

    .legal-toc ul {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0;
    }

    .legal-hero-title {
        font-size: 2.2rem;
    }

    .legal-content-wrapper {
        padding: 30px 20px;
    }

    .legal-section-title {
        font-size: 1.5rem;
    }

    .rights-cards {
        grid-template-columns: 1fr;
    }

    .contact-card-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-card-details p {
        justify-content: center;
    }

    .cookies-table {
        display: block;
        overflow-x: auto;
    }
}

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

    .legal-toc {
        padding: 20px;
    }

    .legal-section-content {
        padding-left: 0;
    }
}

/* Developer Credit Styles */
.developer-credit {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.developer-credit i {
    font-size: 0.9rem;
}

.developer-link {
    color: #ae873b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    display: inline-block;
}

.developer-link:hover {
    color: #c6bba5;
    transform: translateY(-2px);
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ae873b;
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

/* Assicurati che il footer-bottom abbia display flex per gestire due righe */
.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .developer-credit {
        margin-top: 0;
    }
}

/* ========================================
   POPIA PAGE STYLES
   ======================================== */

/* POPIA Hero Section */
.popia-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2632 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.popia-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M20,50 L50,20 L80,50 L50,80 Z" fill="none" stroke="white" stroke-width="2"/></svg>') repeat;
    background-size: 60px 60px;
}

.popia-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.popia-hero-icon {
    margin-bottom: 25px;
}

.popia-hero-icon i {
    color: white;
    font-size: 3.5rem;
    background: rgba(174, 135, 59, 0.3);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popia-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.popia-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 15px;
}

.popia-last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* POPIA Content Section */
.popia-content-section {
    padding: 60px 0 80px;
    background: #f8f5f0;
}

.popia-content-wrapper {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(174, 135, 59, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.popia-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(174, 135, 59, 0.1);
}

.popia-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

/* Quick Info Cards */
.popia-quick-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.quick-card {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(174, 135, 59, 0.1);
    border-color: #ae873b;
}

.quick-card i {
    font-size: 2rem;
    color: #ae873b;
}

.quick-card h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.quick-card p {
    color: #5d5142;
    font-size: 0.9rem;
    margin: 0;
}

/* POPIA TOC */
.popia-toc {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
    border-left: 4px solid #ae873b;
}

.popia-toc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popia-toc h3 i {
    color: #ae873b;
}

.popia-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.popia-toc li {
    margin: 0;
}

.popia-toc a {
    color: #5d5142;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 0;
    border-bottom: 1px dotted transparent;
}

.popia-toc a:hover {
    color: #ae873b;
    border-bottom-color: #ae873b;
    transform: translateX(5px);
}

/* POPIA Sections */
.popia-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.popia-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(174, 135, 59, 0.2);
}

.popia-section-title .section-number {
    color: #ae873b;
    margin-right: 10px;
    font-weight: 700;
}

.popia-section-content {
    padding-left: 20px;
}

.popia-section-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #5d5142;
    margin: 25px 0 15px;
}

.popia-list {
    list-style: none;
    padding: 0;
}

.popia-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.popia-list li::before {
    content: '▹';
    color: #ae873b;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Highlight Box */
.highlight-box {
    background: #f0f7fa;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid #ae873b;
    font-style: italic;
}

.highlight-box i {
    color: #ae873b;
    font-size: 1.5rem;
    margin-right: 10px;
    float: left;
}

/* Officer Card */
.officer-card {
    display: flex;
    gap: 30px;
    background: #f8f5f0;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(174, 135, 59, 0.2);
}

.officer-icon {
    width: 80px;
    height: 80px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.officer-icon i {
    color: white;
    font-size: 2.5rem;
}

.officer-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.officer-title {
    color: #ae873b;
    font-weight: 600;
    margin-bottom: 15px;
}

.officer-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.officer-details i {
    color: #ae873b;
    width: 20px;
}

.officer-details a {
    color: #5d5142;
    text-decoration: none;
    transition: color 0.3s;
}

.officer-details a:hover {
    color: #ae873b;
}

/* Info Categories Grid */
.info-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.category-card {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(174, 135, 59, 0.1);
    border-color: #ae873b;
}

.category-card i {
    font-size: 2rem;
    color: #ae873b;
    margin-bottom: 15px;
}

.category-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.category-card p {
    color: #5d5142;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Purposes Timeline */
.purposes-timeline {
    margin: 30px 0;
    position: relative;
}

.purposes-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(174, 135, 59, 0.2);
}

.purpose-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.purpose-marker {
    width: 40px;
    height: 40px;
    background: #ae873b;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #ae873b;
}

.purpose-content {
    flex: 1;
    padding-bottom: 20px;
}

.purpose-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.purpose-content p {
    color: #5d5142;
    line-height: 1.6;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.condition-card {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.condition-badge {
    background: #ae873b;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.condition-card p {
    color: #5d5142;
    line-height: 1.5;
    margin: 0;
}

/* Rights Detailed */
.rights-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.right-detailed-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.right-detailed-item i {
    color: #ae873b;
    font-size: 1.3rem;
    margin-top: 3px;
}

.right-detailed-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.right-detailed-item p {
    color: #5d5142;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f5f0;
    border-radius: 50px;
    border: 1px solid rgba(174, 135, 59, 0.1);
}

.security-item i {
    color: #ae873b;
    font-size: 1.1rem;
}

.security-item span {
    color: #5d5142;
    font-size: 0.95rem;
}

/* Retention Table */
.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.retention-table thead {
    background: #ae873b;
    color: white;
}

.retention-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.retention-table td {
    padding: 15px;
    background: #f8f5f0;
    border-bottom: 1px solid #e5e5e5;
}

.retention-table tr:last-child td {
    border-bottom: none;
}

/* Regulator Card */
.regulator-card {
    background: #f8f5f0;
    border-radius: 16px;
    padding: 30px;
    margin: 25px 0;
    border: 1px solid rgba(174, 135, 59, 0.2);
}

.regulator-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.regulator-card h3 i {
    color: #ae873b;
}

.regulator-card p {
    margin-bottom: 10px;
}

.regulator-card a {
    color: #ae873b;
    text-decoration: none;
}

.regulator-card a:hover {
    text-decoration: underline;
}

/* Contact Card Large */
.contact-card-large {
    display: flex;
    gap: 30px;
    background: #f8f5f0;
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(174, 135, 59, 0.2);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: #ae873b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: white;
    font-size: 2.5rem;
}

.contact-card-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-card-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card-details i {
    color: #ae873b;
    width: 20px;
}

.contact-card-details a {
    color: #5d5142;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-details a:hover {
    color: #ae873b;
}

/* Important Note */
.important-note {
    background: #fff3e0;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #ae873b;
}

.important-note p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.important-note i {
    color: #ae873b;
    font-size: 1.3rem;
}

/* POPIA CTA Section */
.popia-cta {
    background: linear-gradient(135deg, #ae873b 0%, #5d5142 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.popia-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.popia-cta .cta-icon {
    color: white;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    display: inline-block;
}

.popia-cta .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.popia-cta .cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.popia-cta .cta-button {
    background: white;
    color: #ae873b !important;
    margin: 0 5px;
}

.popia-cta .cta-button-outline {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.popia-cta .cta-button-outline:hover {
    background: white;
    color: #ae873b !important;
}

/* Utility */
.mt-3 {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .popia-content-wrapper {
        padding: 40px;
    }

    .popia-toc ul {
        grid-template-columns: 1fr;
    }

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

    .rights-detailed {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .popia-hero {
        padding: 60px 0;
    }

    .popia-hero-title {
        font-size: 2.2rem;
    }

    .popia-content-wrapper {
        padding: 30px 20px;
    }

    .popia-section-title {
        font-size: 1.5rem;
    }

    .popia-quick-cards {
        grid-template-columns: 1fr;
    }

    .info-categories-grid {
        grid-template-columns: 1fr;
    }

    .officer-card,
    .contact-card-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .officer-details p,
    .contact-card-details p {
        justify-content: center;
    }

    .purpose-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .purposes-timeline::before {
        left: 20px;
    }

    .retention-table {
        display: block;
        overflow-x: auto;
    }

    .popia-cta .cta-title {
        font-size: 1.8rem;
    }
}

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

    .popia-toc {
        padding: 20px;
    }

    .popia-section-content {
        padding-left: 0;
    }
}

/* Smooth Scroll per tutto il sito */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Compensa l'altezza dell'header fisso */
}

/* Per browser più vecchi o maggiore controllo, puoi usare anche: */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Stile per la sezione attiva durante lo scroll */
.active-section {
    transition: background-color 0.3s ease;
}

/* Evidenziazione leggera quando si arriva alla sezione */
@keyframes sectionHighlight {
    0% {
        background-color: rgba(174, 135, 59, 0.1);
    }

    100% {
        background-color: transparent;
    }
}

.highlight-section {
    animation: sectionHighlight 1.5s ease;
}

/* ========================================
   HEADER SCROLL SHADOW
   ======================================== */

#header {
    transition: box-shadow 0.3s ease;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: #ae873b;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(174, 135, 59, 0.45);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#back-to-top:hover {
    background: #5d5142;
}

@media (max-width: 576px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ========================================
   SCROLL FADE-IN ANIMATIONS
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}