:root {
    --primary-green: #fcd675;
    --text-color: #333333;
    --light-bg: #ffffff;
    --dark-bg: #4a4a4a;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Navigation */
.top-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.top-nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding-right: 2rem;
    gap: 2rem;
    padding-top: 0.5rem;
}

.top-nav a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-logo {
    display: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

@media (min-width: 769px) {
    .nav-scrolled .nav-logo {
        display: block;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:last-child {
    bottom: 0;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: var(--text-color);
}

/* Scrolled state */
.nav-scrolled .nav-logo {
    display: block;
    float: left;
}

.nav-scrolled {
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.instagram-icon {
    color: var(--text-color);
    text-decoration: none;
}

.top-nav a:visited {
    color: var(--text-color);
}

.top-nav a:hover {
    color: var(--text-color);
    opacity: 0.7;
}

/* Mobile styles */
@media (max-width: 768px) {
    .top-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-logo {
        display: none;
    }

    .nav-scrolled .nav-logo {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        align-items: center;
    }

    .nav-logo-img {
        margin: 0.5rem 0;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-scrolled .nav-logo {
        margin-right: 1rem;
    }

    .nav-links:before {
        content: '';
        background-image: url('img/logo_color_RGB.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 200px;
        height: 80px;
        margin: 0 auto 2rem auto;
        display: block;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
    }

    .social-link {
        margin-top: 2rem !important;
    }

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
}

.logo-container {
    text-align: center;
}

.logo-main {
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.logo p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-color);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.flower-icon {
    color: var(--text-color);
}

/* Services Section */
.que-ofereixo {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
}

.service-card h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.8;
}

.service-image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Card Link Style */
.service-card-link {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    transition: transform 0.3s ease;
}

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

.service-card-link:visited {
    color: var(--text-color);
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-green);
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card-link:hover .service-cta {
    background-color: #e8c260;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .qui-soc,
    .que-ofereixo,
    .contact {
        padding-top: 120px;
    }
    
    .qui-soc .section-title,
    .que-ofereixo .section-title,
    .contact h2 {
        margin-top: 3rem;
        position: relative;
        z-index: 1;
    }

    .section-title h2 {
        margin-top: 20px;
    }

    .contact h2 {
        margin-top: 20px;
    }

    .top-nav {
        z-index: 1000;
    }
}

/* About Section */
.qui-soc {
    padding: 6rem 2rem;
    background-color: var(--primary-green);
}

@media (min-width: 769px) {
    .qui-soc {
        position: relative;
        padding-top: 10rem;
    }

    .qui-soc .section-title {
        position: absolute;
        top: 6rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
    }
}

.qui-soc .section-title {
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.qui-soc .section-title h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
}

.qui-soc .flower-icon {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1rem;
}

.qui-soc .flower-icon img {
    width: 30px;
    vertical-align: middle;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.dummy {
    padding: 6rem 2rem;
    text-align: center;
    background-image: url('img/dummy.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    min-height: 400px;
}

@media (max-width: 768px) {
    .dummy {
        min-height: 200px;
    }
}

/* Contact Section Styles */
.contact {
    padding: 6rem 2rem;
    text-align: center;
    background-image: url('img/matricaria.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.contact h2 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.contact-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    width: 100%;
    max-width: 400px;
}

.contact-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-link span {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
        background-attachment: scroll;
    }

    .contact-link {
        padding: 0.8rem 1.5rem;
        max-width: 100%;
    }

    .contact h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Footer */
footer {
    padding: 1rem;
    background-color: var(--light-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qui-soc .section-title {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-content {
        display: flex;
        flex-direction: column;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .top-nav ul {
        justify-content: center;
    }

    .logo-main {
        max-width: 300px;
    }

    .service-image {
        width: 200px;
        height: 200px;
    }

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

@media (max-width: 480px) {
    .service-card h3 {
        font-size: 1rem;
    }

    .contact h2 {
        font-size: 1.5rem;
    }

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

    .qui-soc,
    .que-ofereixo {
        padding: 4rem 1rem;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.float-button svg {
    width: 24px;
    height: 24px;
}

.phone-button {
    background-color: #4CAF50;
    color: white;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

@media (max-width: 768px) {
    .float-button svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 360px) {
    .floating-buttons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .float-button {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 768px) {
    .floating-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-button {
        width: 50px;
        height: 50px;
    }

    .float-button img {
        width: 25px;
        height: 25px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 900;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

@media (min-width: 769px) {
    .scroll-indicator {
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 2rem;
        left: 2rem;
    }
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    color: var(--text-color);
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

.instagram-link {
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    visibility: hidden;
    display: none;
}

/* Workshop Popup */
.workshop-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.workshop-popup.active {
    opacity: 1;
    visibility: visible;
}

.workshop-popup-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
}

.workshop-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    background: white;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 10;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.interest-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.interest-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .workshop-popup-content {
        max-width: 95%;
        padding: 15px;
    }
    
    .interest-button {
        padding: 10px 20px;
    }
}

/* =========================================
   SUBPAGE STYLES - Service Detail Pages
   ========================================= */

.subpage {
    padding-top: 0;
}

/* Page Hero for subpages */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background-color: var(--primary-green);
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.page-hero .flower-icon img {
    width: 40px;
}

/* Service Detail Section */
.service-detail {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

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

.service-detail-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content .intro-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 3rem 0 2rem;
    text-align: center;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 2rem 0 1rem;
}

/* Highlight Box */
.highlight-box {
    background-color: rgba(252, 214, 117, 0.2);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-text {
    font-weight: 500;
    font-size: 1.3rem !important;
    text-align: center;
    margin: 2rem 0 !important;
}

/* Experience List */
.experience-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.experience-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.experience-list li::before {
    content: '🌸';
    position: absolute;
    left: 0;
    top: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 3rem;
    background-color: rgba(252, 214, 117, 0.15);
    border-radius: 12px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--text-color);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e8c260;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* CTA Contact Info - for subpages */
.cta-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background-color: white;
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    min-width: 280px;
    justify-content: center;
}

.cta-contact-link:hover {
    background-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-contact-link:visited {
    color: var(--text-color);
}

.cta-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cta-contact-link span {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .cta-contact-link {
        min-width: 100%;
        padding: 0.7rem 1.2rem;
    }
}

/* =========================================
   SUBSCRIPTION PAGE STYLES
   ========================================= */

.subscription-section {
    padding-bottom: 4rem;
}

.delivery-info,
.how-it-works,
.additional-info,
.delivery-zones {
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(252, 214, 117, 0.1);
    border-radius: 12px;
}

.delivery-info h2,
.how-it-works h2,
.additional-info h2,
.delivery-zones h2 {
    text-align: left;
    margin-top: 0;
}

.note {
    font-size: 0.95rem !important;
    font-style: italic;
    color: #666;
}

/* Subscription Options Grid */
.subscription-options {
    margin: 4rem 0;
}

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

.option-card {
    background-color: white;
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.option-icon svg {
    width: 100%;
    height: 100%;
    color: var(--text-color);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.option-card p {
    font-size: 1rem !important;
    margin: 0 !important;
}

/* Size Options Grid */
.size-options {
    margin: 4rem 0;
}

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

.size-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.size-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.size-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.size-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.size-info {
    padding: 1.5rem;
}

.size-info h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
}

.size-info .price {
    display: inline-block;
    background-color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.size-info p {
    font-size: 1rem !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

/* Vase Info */
.vase-info {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-green);
}

.vase-info h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.vase-info p {
    margin: 0 !important;
    font-size: 1rem !important;
}

/* Delivery Zones */
.zones-list {
    font-size: 1.1rem !important;
    line-height: 2 !important;
    text-align: center;
}

.delivery-note {
    text-align: center;
    font-style: italic;
    margin-top: 1rem !important;
}

/* Responsive for Subpages */
@media (max-width: 768px) {
    .page-hero {
        padding: 10rem 1.5rem 3rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-detail {
        padding: 3rem 1.5rem;
    }
    
    .service-detail-content p {
        font-size: 1.1rem;
    }
    
    .service-detail-content .intro-text {
        font-size: 1.3rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .delivery-info,
    .how-it-works,
    .additional-info,
    .delivery-zones {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 9rem 1rem 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .service-detail-content .intro-text {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* =========================================
   DROPDOWN MENU STYLES
   ========================================= */

/* Dropdown Trigger (non-clickable label) */
.dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-color);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.has-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Desktop Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(252, 214, 117, 0.3);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-trigger {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        justify-content: center;
    }
    
    .dropdown-arrow {
        width: 14px;
        height: 14px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: rgba(252, 214, 117, 0.2);
        width: 100%;
        min-width: 100%;
        padding: 0;
        margin: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease, padding 0.3s ease;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .has-dropdown.open .dropdown-menu {
        max-height: 400px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: var(--text-color);
        text-transform: none;
        display: block;
        width: 100%;
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(252, 214, 117, 0.4);
    }
    
    .dropdown-menu li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
}

/* CTA Section contact-info styling for subpages */
.cta-section .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-section .contact-link {
    background-color: white;
    border: 2px solid var(--primary-green);
    color: var(--text-color);
}

.cta-section .contact-link:hover {
    background-color: var(--primary-green);
}