/* ===== GLOBAL STYLES ===== */
:root {
    --black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --gold: #d4af37;
    --copper: #b87333;
    --border-width: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--white);
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    color: var(--black);
    font-weight: 400;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    /* Prevent white box on broken images */
    font-size: 0;
}

/* Ensure tracking pixels are never visible */
noscript img {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ACCESSIBILITY ===== */
.skip-navigation {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-navigation:focus {
    top: 0;
}

*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===== TOP NAVIGATION BAR ===== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 999;
    padding: 30px 0;
    border-bottom: none;
    box-shadow: none;
}

/* Adjust nav link colors for light header */
.nav-link {
    color: var(--black);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Logo styling */
.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.golden-icon {
    filter: sepia(100%) saturate(500%) brightness(90%) hue-rotate(10deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 25px;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    list-style: none;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.nav-links.active {
    transform: translateX(0);
    pointer-events: auto;
}

/* Show hamburger on all screens */
.hamburger {
    display: flex !important;
    background: rgba(0, 0, 0, 0.6);
    padding: 12px;
    border-radius: 5px;
    z-index: 2001;
    /* Above the drawer */
}

.hamburger span {
    background: var(--white);
}

/* Hamburger Menu */
/* Hamburger Menu Styles */
.hamburger {
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.header {
    background-color: var(--black);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    /* Lowered even more */
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

/* ===== SUBPAGE STYLES ===== */
.subpage-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/video-poster.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.subpage-header h1 {
    color: var(--gold);
    font-size: 4em;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.subpage-header p {
    font-style: italic;
    font-size: 1.4em;
    color: var(--light-gray);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Specific button styles for subpages if needed */
.subpage-content {
    padding: 80px 0;
    background: var(--white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.85;
}

.header-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 10px 20px;
    width: 100%;
}

.hero-title {
    color: var(--white);
    font-size: 5em;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.header-tagline {
    color: var(--white);
    font-size: 1.5em;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    display: inline-block;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-book-btn {
    background: var(--gold);
    color: var(--black);
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.hero-book-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}


/* ===== LOCATION BUTTONS SECTION ===== */
.locations-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    padding: 80px 0;
    color: var(--white);
}

.location-header {
    color: var(--white);
    font-size: 2em;
    margin-bottom: 50px;
    letter-spacing: 3px;
}

.location-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.location-card h3 {
    color: var(--gold);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.location-subtitle {
    color: #ccc;
    font-size: 0.9em;
    font-style: italic;
    margin-bottom: 20px;
}

.location-address {
    color: var(--white);
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-phone {
    margin-bottom: 10px;
}

.location-phone a {
    color: var(--gold);
    font-size: 1.2em;
    font-weight: bold;
}

.location-phone a:hover {
    color: var(--white);
}

.location-amenities {
    color: #aaa;
    font-size: 0.85em;
    margin-bottom: 25px;
    font-style: italic;
}

.loc-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--black);
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.loc-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* ===== SERVICES SECTION (Button Grid) ===== */
.services-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.services-heading {
    font-size: 2.5em;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 3px solid var(--black);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.service-icon {
    font-size: 3em;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--black);
}

.service-price {
    font-size: 2em;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
}

.service-duration {
    color: var(--medium-gray);
    font-size: 1em;
    margin-bottom: 25px;
}

.service-btn {
    background: var(--black);
    color: var(--white);
    padding: 12px 35px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.service-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.main-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.sub-heading {
    font-size: 1.5em;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 50px;
    font-family: 'Georgia', serif;
    text-transform: none;
}

.about-image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border: 5px solid var(--black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text {
    font-size: 1.15em;
    color: var(--medium-gray);
    margin-bottom: 30px;
    text-align: left;
    line-height: 1.8;
}

/* ===== PORTFOLIO SECTION (Redesigned) ===== */
.portfolio-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.ratings-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.rating-badge {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.rating-badge:hover {
    transform: scale(1.1);
}

.rating-text {
    text-align: center;
    font-size: 1.2em;
    color: var(--medium-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.portfolio-grid-rev {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item-rev {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 3px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item-rev img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item-rev:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.portfolio-item-rev:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .portfolio-grid-rev {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid-rev {
        grid-template-columns: 1fr;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--white);
    padding: 80px 0;
}

.reviews-summary-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.reviews-summary {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.review-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.8em;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
}

.review-btn:hover {
    background: transparent;
    color: var(--gold);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-box {
    background: var(--light-gray);
    padding: 40px 30px;
    border-left: 5px solid var(--gold);
    border-radius: 5px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-box p {
    font-style: italic;
    color: var(--black);
    font-size: 1.1em;
    line-height: 1.6;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--charcoal);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.insta-heading {
    margin-bottom: 25px;
    font-size: 2.5em;
    color: var(--white);
    letter-spacing: 2px;
}

.insta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    background: var(--white);
}

.insta-btn i {
    margin-right: 12px;
    font-size: 1.2em;
}

.insta-sub {
    margin-top: 25px;
    font-size: 1.1em;
    color: #aaa;
    font-style: italic;
}

/* ===== INQUIRY CTA SECTION ===== */
.inquiry-cta-section {
    background: var(--charcoal);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.inquiry-cta-section h2 {
    color: var(--white);
    font-size: 2.5em;
    margin-bottom: 15px;
}

.inquiry-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.inquiry-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--black);
    padding: 18px 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.inquiry-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* ===== FOOTER (Enhanced) ===== */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
    border-top: 3px solid var(--gold);
    color: var(--white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.3em;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-business-name {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col a {
    color: var(--white);
    display: inline-block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col a i {
    margin-right: 8px;
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--white);
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-location {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location:last-child {
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--gold);
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 15px;
}

.designer-creds {
    color: #666;
    font-size: 0.85em;
}

.designer-creds a {
    color: #888;
    transition: color 0.3s ease;
}

.designer-creds a:hover {
    color: var(--gold);
}

/* ===== SCROLL TO TOP ===== */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--black);
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 1.3em;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: all 0.3s ease;
}

#scrollToTop:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 100px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.inquiry-modal-content {
    max-width: 700px;
}

.modal-close {
    color: var(--medium-gray);
    float: right;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--black);
}

.modal h2 {
    margin-bottom: 15px;
    font-size: 2em;
    color: var(--black);
}

.modal p {
    margin-bottom: 30px;
    color: var(--medium-gray);
    font-size: 1.1em;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
    color: var(--black);
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.modal-btn i {
    margin-right: 10px;
}

/* ===== INQUIRY FORM ===== */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--black);
    font-size: 1em;
}

.required {
    color: #d32f2f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid var(--black);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    margin-right: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .portfolio-integrated {
        grid-template-columns: 1fr;
    }

    .review-column {
        flex-direction: row;
    }

    .portfolio-grid-center {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .hamburger {
        display: flex;
    }

    /* Navigation overrides removed to favor global side drawer */


    .nav-link {
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }

    /* Hero */
    .header {
        margin-top: 0;
        min-height: 80vh;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 3em;
    }

    .header-tagline {
        font-size: 1.5em;
        padding: 15px 25px;
    }

    /* Locations */
    .location-buttons {
        grid-template-columns: 1fr;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Testimonials */
    .reviews-summary-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-grid-center {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        margin: 50px auto;
        padding: 30px 20px;
    }

    /* Text sizes */
    .main-heading,
    .section-title {
        font-size: 2em;
    }

    .services-heading {
        font-size: 2em;
    }

    .about-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header-tagline {
        font-size: 1.2em;
        padding: 12px 20px;
    }

    .location-header {
        font-size: 1.5em;
    }

    .service-card h3 {
        font-size: 1.2em;
    }

    .service-price {
        font-size: 1.6em;
    }

    #scrollToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.testimonial-box,
.portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== PRINT STYLES ===== */
@media print {

    .top-nav,
    .hamburger,
    #scrollToTop,
    .modal {
        display: none !important;
    }
}