/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-navy: #0A1F33;
    --color-white: #FFFFFF;
    --color-beige: #E8DCC8;
    --color-silver: #C0C0C0;
    --color-gold: #D4AF37;
    --color-dark-navy: #051428;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 31, 51, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
    display: flex;
    gap: 5px;
}

.logo-text {
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
}

.logo-accent {
    color: var(--color-gold);
    font-family: 'Playfair Display', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: 60px;
    padding: 100px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg-real.png') center/cover no-repeat;
    z-index: 1;
    animation: heroZoom 20s infinite alternate linear;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 31, 51, 0.85) 0%, rgba(5, 20, 40, 0.95) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="url(%23pattern)"/></svg>');
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 7vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(28px, 10vw, 48px);
        line-height: 1.2;
    }

    .hero {
        padding-top: 140px;
        /* More space for header on mobile */
    }
}

.hero-subheadline {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--color-beige);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.cta-primary:hover {
    background: #F5D060;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.cta-secondary:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-3px);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--color-white);
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
    stroke-width: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--color-navy);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-transform: capitalize;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: rgba(212, 175, 55, 0.2);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.view-details {
    background: var(--color-gold);
    color: var(--color-navy);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.view-details:hover {
    background: #F5D060;
    transform: translateX(5px);
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding: 100px 0;
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: var(--transition);
    border-top: 4px solid var(--color-gold);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--color-beige);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark-navy) 100%);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-white);
}

.stats-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 30px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-beige);
}

/* ===== PROJECTS GALLERY ===== */
.projects {
    padding: 100px 0;
    background: #f9f9f9;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    grid-auto-rows: 280px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.large-vertical {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 31, 51, 0.9) 100%);
    padding: 30px 20px;
    color: var(--color-white);
    transform: translateY(50px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 12px;
    color: var(--color-beige);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: var(--color-beige);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.testimonial-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 3px;
}

.testimonial-header p {
    font-size: 12px;
    color: #999;
}

.testimonial-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.rating {
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== SERVICE AREAS SECTION ===== */
.service-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-dark-navy) 100%);
    color: var(--color-white);
}

.service-areas .section-title,
.service-areas .section-subtitle {
    color: var(--color-white);
}

.service-areas .section-subtitle {
    color: var(--color-beige);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.area-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--color-gold);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.area-card:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.area-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.area-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-link:hover {
    color: var(--color-navy);
    transform: translateX(5px);
}

.contact-label {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-submit {
    background: var(--color-gold);
    color: var(--color-navy);
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit:hover {
    background: #F5D060;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.map-container {
    margin-top: 60px;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-beige);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-size: 14px;
    color: var(--color-beige);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-section a {
    color: var(--color-beige);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: auto;
        padding: 100px 20px;
        min-height: 80vh;
        margin-top: 60px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-item.large-vertical {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-subheadline {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .hero-cta {
        gap: 10px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 36px;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 12px;
        font-size: 13px;
    }

    .info-card {
        padding: 20px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Core Web Vitals Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Reduce layout shift */
.hero,
.services,
.why-us,
.projects,
.testimonials,
.service-areas,
.contact {
    min-height: auto;
}

/* Updated Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(10, 31, 51, 0.99);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.3s ease-in-out;
        gap: 0;
        padding: 20px 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 16px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.05);
        color: var(--color-gold);
        width: 100%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}

/* Developer Credit Style */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.developer-credit {
    font-size: 0.85em;
    opacity: 0.7;
    transition: opacity 0.3s;
    margin-top: 5px;
}

.developer-credit:hover {
    opacity: 1;
}

.developer-credit a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
}

.developer-credit a:hover {
    text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

details {
    background: var(--color-white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

details:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

details[open] {
    border-left: 4px solid var(--color-gold);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-navy);
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 24px;
    color: var(--color-gold);
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    border-top: 1px solid #f5f5f5;
    margin-top: 10px;
    padding-top: 15px;
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===== INTERNAL PAGE HEROES ===== */
.service-hero {
    padding: 160px 0 80px !important;
    background: var(--color-navy);
    color: var(--color-white);
    text-align: center;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 6vw, 56px) !important;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 20px 60px !important;
    }
}