:root {
    /* Color Palette */
    --primary: #151b26;
    /* Deep Navy/Black */
    --secondary: #1C2331;
    /* Lighter Navy */
    --accent: #D4AF37;
    /* Metallic Gold */
    --accent-hover: #b8962c;
    /* Darker Gold */
    --bg-light: #FAFAFA;
    /* Off-white */
    --text-dark: #333333;
    /* Charcoal Text */
    --text-light: #666666;
    /* Medium Gray */
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Animation Tokens */
    --transition-fast: all 0.2s ease-in-out;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

p::first-letter {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Dynamic Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 24px;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Video & Header Layout */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    /* Bring video up */
    object-fit: cover;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* slight darkening */
    z-index: 2;
    /* overlay over video */
}

.main-header {
    width: 100%;
    z-index: 1000;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--white);
    padding-top: 0px;
}

.hero-video-wrapper .main-header {
    position: relative;
}

/* Top Bar */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 300;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: var(--white);
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--accent);
}

/* Middle Header (Brand) */
.middle-header {
    text-align: center;
    padding: 25px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
    /* black with 60% opacity */
}

.brand-logo {
    display: inline-block;
}

.header-logo-img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.header-logo-img:hover {
    transform: scale(1.05);
}

/* Bottom Nav */
.bottom-nav {
    background: rgba(15, 19, 27, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Content */
.hero-content-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 100;
}

.hero-main-title {
    font-family: "Brush Script MT", "cursive", var(--font-heading);
    font-size: 5.5rem;
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    line-height: 1.2;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.whatsapp-label {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    position: relative;
}

.whatsapp-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Hide mobile-only elements by default */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-break {
    display: none;
}

/* Common Sections */
section {
    padding: 120px 0;
}

.section-title {
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.divider {
    height: 3px;
    width: 70px;
    background-color: var(--accent);
    margin: 0 auto;
    border-radius: 3px;
}

/* Features/Craft Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: var(--transition-slow);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--accent);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 90px;
    height: 90px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    transition: var(--transition-slow);
}

.feature-card:hover .icon-box {
    background-color: var(--accent);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Alt Background for alternating sections */
.bg-light-alt {
    background-color: #F0F2F5;
    /* slightly darker than #FAFAFA */
}

/* Left aligned section titles */
.section-title-left {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
}

.left-divider {
    margin: 0 0 30px 0;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--accent);
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.why-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-block {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
}

.service-block img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover img {
    transform: scale(1.05);
}

.service-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.service-content {
    padding: 35px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 27, 38, 0.95), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Reviews Section with Swiper */
.reviews-slider {
    padding-bottom: 50px;
    /* space for pagination */
    overflow: hidden;
}

.review-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    position: relative;
    border-top: 3px solid transparent;
    transition: var(--transition);
    height: auto;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 5px;
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Nav and Pagination Customization */
.swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

.review-prev,
.review-next {
    color: var(--primary);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    margin-top: -40px;
}

.review-prev::after,
.review-next::after {
    font-size: 18px;
    font-weight: bold;
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

.review-prev:hover,
.review-next:hover {
    background: var(--accent);
    color: var(--white);
}

/* Action Banner */
.banner {
    background: linear-gradient(rgba(21, 27, 38, 0.93), rgba(21, 27, 38, 0.93)), url('https://images.unsplash.com/photo-1598808503746-f34c53b9323e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    text-align: center;
    color: var(--white);
    padding: 140px 0;
}

.banner h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Footer */
footer {
    background-color: var(--primary);
    color: #9ba4b5;
    padding: 100px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col .footer-logo-img {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: #9ba4b5;
    position: relative;
    padding-left: 0;
    transition: var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-col p,
.footer-col address,
.footer-col a {
    color: #9ba4b5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    background-color: #0f131b;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

/* Animations & Micro-interactions */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-video {
        display: none !important;
    }

    .mobile-video {
        display: block !important;
    }

    .bottom-nav {
        padding: 0;
        border: none;
        background: transparent;
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .middle-header {
        position: relative;
        padding: 15px 0;
    }

    .header-logo-img {
        max-height: 80px;
    }

    .mobile-menu-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-new {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        font-size: 1.5rem;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        transition: var(--transition);
        margin: 0;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .mobile-break {
        display: block;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .section-title-left {
        text-align: center;
        font-size: 2.5rem;
    }

    .left-divider {
        margin: 0 auto 30px auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col ul a:hover {
        padding-left: 0;
        color: var(--accent);
    }

    .review-prev,
    .review-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.8rem;
    }

    .brand-subtitle {
        font-size: 0.5rem;
    }

    .hero-main-title {
        font-size: 2.8rem;
    }

    .banner h2 {
        font-size: 2.5rem;
    }
}

/* Active Mobile Navigation Menu */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(25, 25, 25, 0.98);
    padding: 20px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.nav-links.active a {
    color: var(--white);
    font-size: 1.1rem;
    padding: 10px 0;
}

/* Dropdown Menus (Desktop) */
@media (min-width: 769px) {
    .dropdown {
        position: relative;
    }

    .dropdown-icon {
        font-size: 0.75rem;
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 280px;
        background-color: #151b26;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 15px 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 4px;
        border-top: 3px solid var(--accent);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu a {
        color: var(--white) !important;
    }
}

/* Dropdown Defaults */
.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent) !important;
    padding-left: 32px !important;
}

/* Mobile Dropdowns */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        display: none;
        padding: 0;
        margin-top: 10px;
        list-style: none;
    }

    /* Make dropdown visible on mobile when active menu is open */
    .nav-links.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links.active .dropdown-menu a {
        color: var(--white);
        padding: 10px 20px;
        font-size: 0.85rem;
        background: transparent;
    }

    .nav-links.active .dropdown-menu a:hover {
        color: var(--accent) !important;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 20px !important;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown>a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        width: 100%;
        display: block;
    }
}

/* Global Subpage Fixes */
div.subpage-hero {
    height: 90vh !important;
    min-height: 500px !important;
    padding-top: 260px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.subpage-title {
    color: var(--white) !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    div.subpage-hero {
        height: 50vh !important;
        min-height: 400px !important;
        padding-top: 140px !important;
    }
}

/* Google Translate Widget Customization */
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-te-gadget {
    font-family: var(--font-body) !important;
    color: transparent !important;
    display: flex;
    align-items: center;
}
.goog-te-gadget .goog-te-combo {
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
.goog-te-gadget .goog-te-combo:hover {
    border-color: var(--accent);
}
.goog-te-gadget .goog-te-combo option {
    color: var(--text-dark);
}
.goog-te-gadget span {
    display: none !important;
}