/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-red: #db2b33;
    --primary-red-hover: #c2222a;
    --dark-navy: #0c111f;
    --bg-cream: #fcfaf6;
    --text-main: #0c111f;
    --text-muted: #505561;
    --border-color: #dadee499;
    --blue-accent: #253dad;
    --brand-blue-deep: #101b7c;
    --shadow-elegant: 0px 30px 60px -30px rgba(37, 61, 173, 0.35);
    
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-subtitle {
    display: block;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-main);
}

.section-title.light {
    color: white;
}

.section-subtitle.light {
    color: #F87171; /* lighter red for dark background */
}

/* Typography Helpers */
.highlight-red, .text-brand-red {
    color: var(--primary-red);
}

.highlight-blue, .text-brand-blue {
    color: var(--blue-accent);
}

.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: none;
    box-shadow: 0px 10px 25px -10px rgba(219, 43, 51, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0px 15px 30px -10px rgba(219, 43, 51, 0.65);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid rgba(12, 17, 31, 0.15);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: white;
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--text-main);
    border: none;
    box-shadow: 0px 10px 25px -10px rgba(12, 17, 31, 0.1);
}

.btn-white:hover {
    background-color: #fcfaf6;
    transform: translateY(-2px);
    box-shadow: 0px 15px 30px -10px rgba(12, 17, 31, 0.15);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--text-main);
    border-color: white;
    transform: translateY(-2px);
}


/* Header */
.header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(252, 250, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 100px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0.8;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease-in-out;
}

.nav-links a:hover {
    background-color: #f2eee7;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.phone-link i {
    color: var(--primary-red);
    margin-right: 4px;
}


/* Hero Section */
.hero {
    padding: 60px 0 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-text {
    display: inline-block;
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--blue-accent);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    background-color: #ece9e2;
    border-radius: 24px;
    z-index: 1;
}

.hero-search-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 16px 24px;
    border-radius: 100px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.search-input .placeholder {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.search-btn {
    background: var(--dark-navy);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: var(--primary-red);
}

/* Trust Badges */
.trust-badges {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: white;
}

.badges-container {
    display: flex;
    justify-content: space-between;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.badge i {
    color: var(--blue-accent);
    font-size: 1.2rem;
}

/* Services */
.services {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.view-all-link:hover {
    border-color: var(--text-main);
}

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

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 61, 173, 0.2);
    box-shadow: var(--shadow-elegant);
}

.service-card.active {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow-elegant);
    background-color: #f6f8fd;
}

.service-icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #F3F4F6;
    border-radius: 0 16px 0 100px;
    opacity: 0.5;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 48px;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Process Section */
.process {
    background-color: var(--dark-navy);
    padding: 100px 0;
    color: white;
}

.process-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.process-content .section-title {
    margin-bottom: 24px;
}

.process-desc {
    color: #9CA3AF;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.process-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 32px;
    border-radius: 16px;
}

.step-num {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.process-step p {
    color: #9CA3AF;
    font-size: 0.95rem;
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.portfolio-img-wrapper {
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px;
}

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

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

.portfolio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.portfolio-info h3 {
    font-size: 1rem;
    font-weight: 600;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all 0.3s;
}

.portfolio-card:hover .icon-circle {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/* Reasons */
.reasons {
    padding: 100px 0;
    background-color: white;
}

.reasons .section-title {
    margin-bottom: 60px;
}

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

.reason-card {
    border: 1px solid var(--border-color);
    padding: 40px 32px;
    border-radius: 16px;
}

.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(61, 95, 154, 0.1);
    color: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.reason-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.reason-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Locations */
.locations {
    padding: 100px 0;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.location-tag {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.location-tag i {
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.location-tag:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(219, 43, 51, 0.4);
}

.location-tag:hover i {
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: #F8F6F0;
}

.testimonials .section-title {
    margin-bottom: 60px;
}

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

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
}

.stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
}

.author h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.rating-overall {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rating-score {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--blue-accent) 60%, var(--primary-red) 100%);
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.cta-glow-top {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 288px;
    height: 288px;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-glow-bottom {
    position: absolute;
    bottom: -128px;
    left: -80px;
    width: 320px;
    height: 320px;
    background-color: rgba(219, 43, 51, 0.4);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-box .section-title {
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: white;
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-brand p {
    color: #9CA3AF;
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-red);
}

.footer-links-group {
    display: contents;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #9CA3AF;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-list li i {
    color: var(--primary-red);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.promise-box {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Responsive (Basic) */
@media (max-width: 1024px) {
    .hero-container,
    .process-container,
    .footer-top,
    .promise-box {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid,
    .reasons-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}
.menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(12, 17, 31, 0.05);
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
        width: 100%;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: var(--bg-cream);
        padding: 30px 24px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(12, 17, 31, 0.05);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .header-actions {
        display: flex !important;
        gap: 12px;
        align-items: center;
    }

    .header-actions .btn {
        display: none !important;
    }

    .header-actions .phone-link {
        font-size: 1.1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-description {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        text-align: left;
        justify-content: start;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-detail-section > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .reasons-grid,
    .testimonials-grid,
    .portfolio-grid,
    .process-steps,
    .gallery-grid,
    .areas-grid {
        grid-template-columns: 1fr !important;
    }

    .promise-box {
        padding: 30px;
        gap: 30px;
        text-align: center;
    }

    .promise-box div {
        text-align: center !important;
    }
    
    .badges-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        margin-bottom: 40px;
    }
    
    .footer-brand {
        grid-column: span 2 !important;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .badges-container {
        grid-template-columns: 1fr !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .header-actions .phone-link span {
        display: none !important;
    }

    .footer-top {
        grid-template-columns: 1fr !important;
    }

    .footer-brand {
        grid-column: span 1 !important;
    }
}

/* Entry Animations & Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-left {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

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

.gallery-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elegant);
}

.gallery-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-info {
    padding: 24px;
}

.gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.gallery-info p {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Areas We Serve page grid styles */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.area-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 61, 173, 0.2);
    box-shadow: var(--shadow-elegant);
}

.area-card.active {
    border-color: var(--blue-accent);
    box-shadow: var(--shadow-elegant);
    background-color: #f6f8fd;
}

.area-region {
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.area-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.area-card .explore-link {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--blue-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.area-card:hover .explore-link {
    gap: 12px;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-card {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f6f8fd;
    color: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.contact-detail-content p, 
.contact-detail-content a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-detail-content a:hover {
    color: var(--blue-accent);
}

.contact-form-container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

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

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: #fcfcfb;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(37, 61, 173, 0.15);
    background-color: white;
}

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

.footer-column ul li a.active {
    color: var(--blue-accent);
    font-weight: bold;
}
