/* =========================================================
   BAM'S WEBSITE BUILDER — COMPLETE MAIN STYLESHEET
   Includes shared sticky navigation and responsive menu
========================================================= */


/* ==========================
   GLOBAL RESET
========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #0d0d0d;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================================================
   BAM'S WEBSITE BUILDER — SHARED RESPONSIVE NAVIGATION
   Matches all current English and Spanish HTML pages
========================================================= */

:root {
    --nav-gold: #d4a637;
    --nav-gold-light: #f1c75b;
    --nav-black: #090909;
    --nav-panel: #10100e;
    --nav-border: rgba(212, 166, 55, 0.34);
    --header-height: 86px;
}

html {
    scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
    padding-top: var(--header-height);
}

body.menu-open {
    overflow: hidden;
}


/* ==========================
   FIXED SITE HEADER
========================== */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5000;

    width: 100%;
    height: var(--header-height);

    background: rgba(7, 7, 7, 0.97);
    border-bottom: 1px solid rgba(212, 166, 55, 0.28);

    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.header-scrolled,
.site-header.scrolled {
    background: rgba(4, 4, 4, 0.99);
    border-bottom-color: rgba(212, 166, 55, 0.48);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.46);
}

.header-container {
    display: flex;
    align-items: center;

    width: min(1400px, 100%);
    height: 100%;

    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}


/* ==========================
   DESKTOP BRAND
========================== */

.site-brand {
    display: inline-flex;
    align-items: center;

    flex: 0 1 auto;
    min-width: 0;

    text-decoration: none;
}

.brand-text {
    display: flex;
    flex-direction: column;

    min-width: 0;

    line-height: 1;
}

.brand-text strong {
    overflow: hidden;

    color: var(--nav-gold-light);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.34rem;
    font-weight: 700;
    letter-spacing: 0.055em;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-text small {
    overflow: hidden;

    margin-top: 5px;

    color: #ffffff;

    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.21em;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* ==========================
   DESKTOP NAVIGATION
========================== */

.desktop-navigation {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;

    gap: clamp(14px, 1.65vw, 28px);

    margin-left: auto;
}

.desktop-navigation a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: var(--header-height);

    color: #ffffff;

    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;

    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    transition: color 0.25s ease;
}

.desktop-navigation a::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;

    width: 0;
    height: 2px;

    margin: auto;

    background: var(--nav-gold);

    transition: width 0.25s ease;
}

.desktop-navigation a:hover,
.desktop-navigation a.active,
.desktop-navigation a[aria-current="page"] {
    color: var(--nav-gold-light);
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after,
.desktop-navigation a[aria-current="page"]::after {
    width: 100%;
}

/* Make the primary conversion action stand out from standard navigation links. */
.desktop-navigation a[data-page="booking"] {
    margin-left: 4px;
    padding: 10px 16px;
    border: 1px solid var(--nav-gold-light);
    border-radius: 999px;
    background: var(--nav-gold-light);
    color: #101010;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(212, 166, 55, 0.24);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.desktop-navigation a[data-page="booking"]::after {
    display: none;
}

.desktop-navigation a[data-page="booking"]:hover,
.desktop-navigation a[data-page="booking"]:focus-visible {
    background: #fff1a6;
    border-color: #fff1a6;
    color: #101010;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(212, 166, 55, 0.36);
}


/* ==========================
   DESKTOP LANGUAGE LINKS
========================== */

.desktop-language {
    display: flex;
    align-items: center;

    flex: 0 0 auto;
    gap: 8px;

    margin-left: 24px;

    color: #777777;
}

.desktop-language a {
    color: #bdbdbd;

    font-size: 0.72rem;
    font-weight: 800;

    text-decoration: none;

    transition: color 0.25s ease;
}

.desktop-language a:hover,
.desktop-language .language-active,
.desktop-language .active-language {
    color: var(--nav-gold-light);
}


/* ==========================
   HAMBURGER BUTTON
========================== */

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    flex: 0 0 46px;
    gap: 6px;

    width: 46px;
    height: 46px;

    margin-left: auto;
    padding: 0;

    background: rgba(212, 166, 55, 0.05);

    border: 1px solid rgba(212, 166, 55, 0.42);
    border-radius: 9px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--nav-gold-light);
    border-radius: 999px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ==========================
   DARK MENU OVERLAY
========================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 5990;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    background: rgba(0, 0, 0, 0.78);

    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.menu-overlay.active,
.menu-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* ==========================
   MOBILE MENU DRAWER
========================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 6000;

    display: flex;
    flex-direction: column;

    width: min(92vw, 430px);
    height: 100dvh;

    padding:
        0
        40px
        max(30px, env(safe-area-inset-bottom));

    overflow-x: hidden;
    overflow-y: auto;

    visibility: hidden;
    opacity: 0;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(212, 166, 55, 0.14),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #11100d,
            #080808 46%,
            #090909
        );

    border-left: 1px solid var(--nav-border);

    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.64);

    transform: translate3d(105%, 0, 0);

    transition:
        transform 0.34s ease,
        opacity 0.25s ease,
        visibility 0.34s ease;

    overscroll-behavior: contain;
}

.mobile-menu.active,
.mobile-menu.open {
    visibility: visible;
    opacity: 1;

    transform: translate3d(0, 0, 0);
}


/* ==========================
   MOBILE MENU HEADER
========================== */

.mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 182px;
    margin-bottom: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(17, 16, 13, 0.99),
            rgba(17, 16, 13, 0.95)
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-menu-brand {
    display: inline-flex;
    align-items: center;

    min-width: 0;

    text-decoration: none;
}

.mobile-menu-brand > span {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.mobile-menu-brand strong {
    color: var(--nav-gold-light);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mobile-menu-brand small {
    margin-top: 8px;

    color: #ffffff;

    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.mobile-menu-close {
    position: relative;

    display: grid;
    place-items: center;

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    margin-left: 18px;
    padding: 0;

    background: rgba(212, 166, 55, 0.03);

    border: 1px solid rgba(212, 166, 55, 0.55);
    border-radius: 50%;

    cursor: pointer;
}

.mobile-menu-close span {
    position: absolute;

    width: 27px;
    height: 3px;

    background: var(--nav-gold-light);
    border-radius: 999px;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}


/* ==========================
   MOBILE NAVIGATION LINKS
========================== */

.mobile-navigation {
    display: flex;
    flex-direction: column;

    width: 100%;
}

.mobile-navigation a {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;

    min-height: 112px;
    padding: 0 20px;

    color: #ffffff;
    background: transparent;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);

    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.1em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.mobile-navigation a::after {
    display: none;
    content: none;
}

.mobile-navigation a:hover,
.mobile-navigation a.active,
.mobile-navigation a[aria-current="page"] {
    color: var(--nav-gold-light);
    background: rgba(212, 166, 55, 0.08);
    border-bottom-color: #f2d600;
}

.mobile-link-icon {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    color: var(--nav-gold-light);

    border: 1px solid rgba(212, 166, 55, 0.55);
    border-radius: 50%;

    font-size: 1.05rem;
    line-height: 1;
}


/* ==========================
   MOBILE LANGUAGE AREA
========================== */

.mobile-language-section {
    margin-top: 42px;
}

.mobile-language-section > p {
    margin-bottom: 24px;

    color: #bcbcbc;

    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.28em;

    text-transform: uppercase;
}

.mobile-language-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.mobile-language-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 72px;
    padding: 12px;

    color: #ffffff;
    background: transparent;

    border: 1px solid #3a3a3a;
    border-radius: 7px;

    font-size: 0.95rem;
    font-weight: 800;

    text-decoration: none;
}

.mobile-language-links a.language-active,
.mobile-language-links a.active-language {
    color: #101010;

    background:
        linear-gradient(
            135deg,
            var(--nav-gold-light),
            var(--nav-gold)
        );

    border-color: var(--nav-gold-light);
}


/* ==========================
   MOBILE QUOTE BUTTON
========================== */

.mobile-menu-cta {
    margin-top: 28px;
}

.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 74px;
    padding: 14px 20px;

    color: #111111;

    background:
        linear-gradient(
            135deg,
            #f3c95c,
            #b57c08
        );

    border: 1px solid var(--nav-gold-light);
    border-radius: 8px;

    font-size: 0.94rem;
    font-weight: 900;
    letter-spacing: 0.1em;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}


/* ==========================
   MOBILE CONTACT DETAILS
========================== */

.mobile-menu-contact {
    display: grid;
    gap: 15px;

    margin-top: 34px;
    padding-bottom: 25px;
}

.mobile-menu-contact a {
    color: #bcbcbc;

    font-size: 0.91rem;

    text-decoration: none;
    overflow-wrap: anywhere;
}

.mobile-menu-contact a:hover {
    color: var(--nav-gold-light);
}


/* ==========================
   NAVIGATION BREAKPOINTS
========================== */

@media (min-width: 901px) {
    .mobile-menu,
    .menu-overlay {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .header-container {
        padding: 0 20px;
    }

    .desktop-navigation,
    .desktop-language {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 96px;
    }
}

@media (max-width: 520px) {
    .header-container {
        padding: 0 15px;
    }

    .brand-text strong {
        font-size: 1.11rem;
    }

    .brand-text small {
        font-size: 0.48rem;
    }

    .mobile-menu {
        width: 100vw;
        padding-right: 28px;
        padding-left: 28px;

        border-left: 0;
    }

    .mobile-menu-header {
        min-height: 142px;
        margin-bottom: 20px;
    }

    .mobile-menu-brand strong {
        font-size: 1.48rem;
    }

    .mobile-menu-brand small {
        font-size: 0.58rem;
    }

    .mobile-menu-close {
        flex-basis: 52px;

        width: 52px;
        height: 52px;
    }

    .mobile-navigation a {
        grid-template-columns: 56px 1fr;

        min-height: 86px;
        padding: 0 12px;

        font-size: 0.95rem;
    }

    .mobile-link-icon {
        width: 42px;
        height: 42px;
    }

    .mobile-language-section {
        margin-top: 30px;
    }

    .mobile-language-links a {
        min-height: 60px;
    }

    .mobile-menu-cta a {
        min-height: 64px;
        font-size: 0.84rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header *,
    .mobile-menu,
    .menu-overlay {
        transition-duration: 0.01ms !important;
    }
}


/* ==========================
   HERO SECTION
========================== */

.hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.98) 0%,
            rgba(7, 7, 7, 0.91) 48%,
            rgba(7, 7, 7, 0.68) 100%
        );

    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;
    right: -180px;
    bottom: -220px;

    width: 550px;
    height: 550px;

    background: rgba(255, 215, 0, 0.08);
    border-radius: 50%;
    filter: blur(35px);
}

.hero-logo-bg {
    position: absolute;
    top: 50%;
    right: 6%;
    z-index: 1;

    width: min(46vw, 620px);
    max-height: 75vh;

    object-fit: contain;
    object-position: center;

    opacity: 0.1;
    transform: translateY(-50%);
    mix-blend-mode: screen;

    filter:
        saturate(1.1)
        contrast(1.05)
        drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));

    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;
}

.hero-content h4 {
    margin-bottom: 18px;

    color: #ffd700;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 5px;
}

.hero-content h1 {
    margin-bottom: 25px;

    color: #ffffff;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: #ffd700;
}

.hero-content p {
    max-width: 660px;
    margin-bottom: 35px;

    color: #d0d0d0;
    font-size: 19px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}


/* ==========================
   BUTTONS
========================== */

.btn,
.primary-button,
.secondary-button {
    display: inline-block;
    padding: 15px 27px;

    border: 2px solid #ffd700;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn,
.primary-button {
    color: #111111;
    background: #ffd700;
}

.btn:hover,
.primary-button:hover {
    color: #ffd700;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.secondary-button {
    color: #ffd700;
    background: transparent;
}

.secondary-button:hover {
    color: #111111;
    background: #ffd700;
    transform: translateY(-3px);
}


/* ==========================
   GENERAL CONTENT SECTIONS
========================== */

.content-section,
.about {
    padding: 100px 8%;
    background: #0d0d0d;
}

.about {
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
}

.about p {
    max-width: 850px;
    margin: 0 auto;

    color: #bbbbbb;
    font-size: 17px;
    line-height: 1.8;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h4 {
    margin-bottom: 14px;

    color: #ffd700;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
}

.section-heading h2 {
    margin-bottom: 18px;

    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
}

.section-heading p {
    color: #bbbbbb;
    font-size: 17px;
    line-height: 1.75;
}

.section-label {
    margin-bottom: 15px;

    color: #ffd700;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/* ==========================
   SERVICES PAGE
========================== */

.services-section {
    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 215, 0, 0.09),
            transparent 32%
        ),
        #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.service-card {
    padding: 35px 30px;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 24px 45px rgba(255, 215, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;

    color: #ffd700;
    font-size: 25px;
}

.service-card p {
    color: #c7c7c7;
    font-size: 16px;
    line-height: 1.7;
}

.service-card ul {
    margin-top: 22px;
    list-style: none;
}

.service-card li {
    position: relative;

    margin-bottom: 13px;
    padding-left: 25px;

    color: #dddddd;
    line-height: 1.5;
}

.service-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ffd700;
    font-weight: 900;
}


/* ==========================
   PORTFOLIO PAGE
========================== */

.portfolio-page {
    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 215, 0, 0.08),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #080808,
            #121212
        );
}

.portfolio-header {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.portfolio-header h4,
.portfolio-eyebrow {
    display: block;
    margin-bottom: 14px;

    color: #ffd700;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.portfolio-header h1 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
}

.portfolio-header p {
    max-width: 740px;
    margin: 0 auto;

    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.8;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.95fr)
        minmax(0, 1.05fr);

    min-width: 0;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 22px;

    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: #ffd700;
    box-shadow: 0 28px 60px rgba(255, 215, 0, 0.12);
}

.portfolio-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 0;
    min-height: 500px;
    padding: 24px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.08),
            transparent 58%
        ),
        #080808;

    border-right: 1px solid rgba(255, 215, 0, 0.16);

    overflow: hidden;
}

.portfolio-image,
.portfolio-project-image {
    display: block;

    width: 100%;
    height: 100%;
    max-height: 560px;

    object-fit: contain;
    object-position: center;

    border-radius: 10px;

    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-image,
.portfolio-card:hover .portfolio-project-image {
    transform: scale(1.035);
}

.logo-showcase {
    padding: 42px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.14),
            transparent 52%
        ),
        linear-gradient(
            145deg,
            #101010,
            #030303
        );
}

.portfolio-logo-image {
    display: block;

    width: 100%;
    max-width: 430px;
    height: auto;
    max-height: 420px;

    object-fit: contain;
    object-position: center;

    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55));

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.portfolio-card:hover .portfolio-logo-image {
    transform: scale(1.035);
    filter: drop-shadow(0 18px 38px rgba(255, 215, 0, 0.12));
}

.portfolio-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    min-width: 0;
    padding: 50px;
}

.portfolio-category {
    display: inline-block;
    margin-bottom: 15px;

    color: #ffd700;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.portfolio-card h2 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
}

.portfolio-card p {
    width: 100%;
    max-width: 560px;
    margin-bottom: 25px;

    color: #c7c7c7;
    font-size: 17px;
    line-height: 1.8;
}

.portfolio-features {
    display: grid;
    gap: 12px;

    width: 100%;
    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.portfolio-features li {
    position: relative;
    padding-left: 25px;

    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.5;
}

.portfolio-features li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #ffd700;
    font-weight: 900;
}

.portfolio-button {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 28px;

    color: #111111;
    background: #ffd700;

    border: 2px solid #ffd700;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.portfolio-button:hover {
    color: #ffd700;
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}


/* ==========================
   CONTACT PAGE
========================== */

.contact-section {
    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 215, 0, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080808,
            #111111
        );
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;

    max-width: 1150px;
    margin: 0 auto;
}

.contact-information h4 {
    margin-bottom: 15px;

    color: #ffd700;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
}

.contact-information h1 {
    margin-bottom: 22px;

    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.08;
}

.contact-information > p {
    margin-bottom: 28px;

    color: #c8c8c8;
    font-size: 17px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details p {
    margin: 0;
    padding: 18px 20px;

    color: #c8c8c8;
    background: #151515;

    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 12px;
}

.contact-details strong {
    color: #ffffff;
}

.contact-details a {
    color: #ffd700;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 20px;

    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    color: #ffffff;
    background: #0d0d0d;

    border: 1px solid #383838;
    border-radius: 8px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777777;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    color: #ffffff;
    background: #111111;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #111111;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;

    color: #111111;
    background: #ffd700;

    border: 2px solid #ffd700;
    border-radius: 8px;

    font-weight: 900;
    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-form button:hover {
    color: #ffd700;
    background: transparent;
    transform: translateY(-2px);
}

.hidden-field {
    position: absolute !important;
    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    opacity: 0 !important;
    pointer-events: none !important;
}


/* ==========================
   PRICES PAGE
========================== */

.pricing-section {
    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 215, 0, 0.09),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #080808,
            #111111,
            #181200
        );
}

.pricing-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.pricing-heading h1 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
}

.pricing-heading h1 span {
    display: block;
    color: #ffd700;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto;

    color: #cccccc;
    font-size: 18px;
    line-height: 1.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    align-items: stretch;

    max-width: 1250px;
    margin: 0 auto;
}

.price-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 610px;
    padding-bottom: 30px;

    background:
        linear-gradient(
            180deg,
            #181818,
            #0d0d0d
        );

    border: 1px solid rgba(255, 215, 0, 0.23);
    border-radius: 22px;

    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.5);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 28px 55px rgba(255, 215, 0, 0.14);
}

.featured-card {
    z-index: 2;

    transform: scale(1.05);

    border: 2px solid #ffd700;
    box-shadow: 0 30px 65px rgba(255, 215, 0, 0.18);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 25px;
    z-index: 2;

    padding: 10px 15px;

    color: #0d0d0d;
    background: #ffd700;

    border-radius: 0 0 10px 10px;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.card-top {
    min-height: 150px;
    padding: 35px 28px;

    text-align: center;

    border-radius: 0 0 55% 55% / 0 0 22% 22%;
}

.card-top h2 {
    margin-bottom: 10px;

    color: #111111;
    font-size: 34px;
}

.card-top p {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 700;
    line-height: 1.5;
}

.starter-top {
    background:
        linear-gradient(
            135deg,
            #d6a800,
            #ffd700
        );
}

.business-top {
    background:
        linear-gradient(
            135deg,
            #ffe56d,
            #ffd700
        );
}

.premium-top {
    background:
        linear-gradient(
            135deg,
            #ffc400,
            #ffea75
        );
}

.price-area {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;

    padding: 30px 20px 20px;

    color: #ffffff;
    text-align: center;
}

.dollar-sign {
    margin-top: 9px;
    margin-right: 3px;

    color: #ffd700;
    font-size: 27px;
    font-weight: 800;
}

.price {
    color: #ffffff;
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
}

.price-note {
    flex-basis: 100%;
    margin-top: 7px;

    color: #a9a9a9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-list {
    flex-grow: 1;

    margin: 10px 0 30px;
    padding: 0 32px;

    list-style: none;
}

.feature-list li {
    position: relative;

    margin-bottom: 17px;
    padding-left: 30px;

    color: #e2e2e2;
    font-size: 16px;
    line-height: 1.5;
}

.feature-list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: #ffd700;
    font-size: 18px;
    font-weight: 900;
}

.price-button {
    display: block;

    width: calc(100% - 60px);
    margin: auto 30px 0;
    padding: 15px 20px;

    color: #111111;
    background: #ffd700;

    border: 2px solid #ffd700;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.price-button:hover {
    color: #ffd700;
    background: transparent;
    transform: translateY(-3px);
}

.featured-button {
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.25);
}

.pricing-disclaimer {
    max-width: 850px;
    margin: 55px auto 0;

    color: #999999;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}


/* ==========================
   ADDITIONAL SERVICES
========================== */

.additional-services {
    max-width: 1050px;
    margin: 85px auto 0;
    padding: 55px;

    background:
        linear-gradient(
            145deg,
            rgba(27, 27, 27, 0.98),
            rgba(12, 12, 12, 0.98)
        );

    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 22px;

    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.additional-services-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.additional-services-heading .section-label {
    margin-bottom: 12px;
}

.additional-services-heading h2 {
    margin-bottom: 16px;

    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.additional-services-heading > p:last-child {
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.75;
}

.services-table {
    background: rgba(8, 8, 8, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    overflow: hidden;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 24px 28px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    padding-left: 34px;
    background: rgba(255, 215, 0, 0.05);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    margin-bottom: 7px;

    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
}

.service-info p {
    color: #a9a9a9;
    font-size: 14px;
    line-height: 1.6;
}

.service-row strong {
    flex-shrink: 0;

    min-width: 190px;

    color: #ffd700;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    text-align: right;
}

.additional-services-button {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}

.additional-services-button .price-button {
    display: inline-block;

    width: auto;
    margin: 0;
    padding: 16px 25px;
}


/* ==========================
   REVIEWS PAGE
========================== */

.reviews-page {
    min-height: 100vh;
    padding: 150px 8% 90px;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 215, 0, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #080808,
            #111111
        );
}

.reviews-header {
    max-width: 850px;
    margin: 0 auto 55px;

    text-align: center;
}

.reviews-header .section-label {
    margin-bottom: 14px;
}

.reviews-header h1 {
    margin-bottom: 20px;

    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.06;
}

.reviews-header h1 span {
    display: block;
    color: #ffd700;
}

.reviews-header p {
    max-width: 720px;
    margin: 0 auto;

    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.8;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    max-width: 1050px;
    margin: 0 auto 55px;
}

.review-summary-card {
    padding: 28px 24px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #191919,
            #101010
        );

    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.review-summary-card strong {
    display: block;
    margin-bottom: 8px;

    color: #ffd700;
    font-size: 34px;
}

.review-summary-card span {
    color: #d5d5d5;
    font-size: 14px;
    font-weight: 700;
}

.review-cta {
    max-width: 1000px;
    margin: 65px auto 0;
    padding: 48px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.13),
            rgba(255, 215, 0, 0.03)
        ),
        #111111;

    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
}

.review-cta h2 {
    margin-bottom: 14px;

    color: #ffffff;
    font-size: clamp(32px, 5vw, 48px);
}

.review-cta p {
    max-width: 680px;
    margin: 0 auto 28px;

    color: #c7c7c7;
    font-size: 17px;
    line-height: 1.75;
}

.review-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.review-cta .primary-button,
.review-cta .secondary-button {
    min-width: 190px;
}


/* ==========================
   SOCIABLEKIT GOOGLE REVIEWS
========================== */

.google-reviews-section {
    width: 100%;
    max-width: 1200px;
    margin: 55px auto 0;
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 25, 0.98),
            rgba(12, 12, 12, 0.98)
        );

    border: 1px solid rgba(255, 215, 0, 0.22);
    border-radius: 20px;

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);

    overflow: hidden;
}

.google-reviews-section .reviews-header {
    max-width: 800px;
    margin: 0 auto 28px;
    text-align: center;
}

.google-reviews-section .section-label {
    margin-bottom: 12px;

    color: #ffd700;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.google-reviews-section h2 {
    margin-bottom: 16px;

    color: #ffffff;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.google-reviews-section .reviews-header p:last-child {
    max-width: 700px;
    margin: 0 auto;

    color: #c7c7c7;
    font-size: 17px;
    line-height: 1.7;
}

.google-reviews-widget {
    width: 100%;
    overflow: hidden;

    background: transparent;

    border-radius: 16px;
}

.google-reviews-widget iframe {
    display: block;

    width: 100%;
    height: 700px;

    margin: 0;
    padding: 0;

    background: transparent;

    border: 0;
    border-radius: 16px;
}


/* ==========================
   GALLERY
========================== */

.gallery {
    width: 100%;
    overflow: visible;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;

    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    display: block;

    width: 100%;
    height: 360px;
    min-width: 0;

    object-fit: cover;
    object-position: center;

    border-radius: 14px;
}


/* ==========================
   FOOTER
========================== */

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 30px 8%;

    color: #999999;
    background: #080808;

    border-top: 1px solid rgba(255, 215, 0, 0.15);

    font-size: 14px;
}

footer a {
    color: #ffd700;
    font-weight: 700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* ==========================
   TABLET RESPONSIVE
========================== */

@media (max-width: 1000px) {
.services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-image-wrapper {
        min-height: 420px;

        border-right: none;
        border-bottom: 1px solid rgba(255, 215, 0, 0.16);
    }

    .portfolio-image,
    .portfolio-project-image {
        width: auto;
        max-width: 420px;
        height: auto;
        max-height: 520px;
    }

    .portfolio-logo-image {
        max-width: 390px;
        max-height: 340px;
    }

    .portfolio-card-content {
        padding: 42px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
    }

    .starter-card,
    .price-card:nth-child(1) {
        order: 1;
    }

    .featured-card,
    .price-card:nth-child(2) {
        order: 2;
        transform: none;
    }

    .premium-card,
    .price-card:nth-child(3) {
        order: 3;
    }

    .featured-card:hover {
        transform: translateY(-10px);
    }

    .additional-services {
        padding: 45px 35px;
    }

    .review-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-summary-card:last-child {
        grid-column: 1 / -1;
    }

    .google-reviews-section {
        padding: 35px 25px;
    }

    .google-reviews-widget iframe {
        height: 620px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gallery-grid img {
        height: 340px;
    }
}


/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 760px) {
.hero {
        min-height: auto;
        padding: 90px 24px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h4 {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: clamp(43px, 13vw, 64px);
    }

    .hero-content p {
        font-size: 17px;
    }

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

    .hero-logo-bg {
        top: 50%;
        right: 50%;

        width: 80vw;

        transform: translate(50%, -50%);
    }

    .content-section,
    .about {
        padding: 75px 20px;
    }

    .services-section,
    .portfolio-page,
    .contact-section,
    .pricing-section,
    .reviews-page {
        padding: 80px 20px 70px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-header {
        margin-bottom: 40px;
    }

    .portfolio-header h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .portfolio-header p {
        font-size: 16px;
    }

    .portfolio-grid {
        gap: 30px;
    }

    .portfolio-image-wrapper {
        min-height: 330px;
        padding: 24px;
    }

    .logo-showcase {
        padding: 28px;
    }

    .portfolio-image,
    .portfolio-project-image {
        width: 100%;
        max-width: 360px;
        height: auto;
        max-height: 430px;
    }

    .portfolio-logo-image {
        width: 100%;
        max-width: 310px;
        max-height: 270px;
    }

    .portfolio-card-content {
        align-items: center;

        padding: 32px 25px 38px;

        text-align: center;
    }

    .portfolio-card p {
        margin-right: auto;
        margin-left: auto;

        font-size: 16px;
    }

    .portfolio-features {
        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;

        text-align: left;
    }

    .portfolio-button {
        align-self: center;

        width: 100%;
        max-width: 290px;
    }

    .pricing-heading {
        margin-bottom: 45px;
    }

    .price-card {
        min-height: auto;
    }

    .card-top h2 {
        font-size: 30px;
    }

    .price {
        font-size: 60px;
    }

    .additional-services {
        margin-top: 65px;
        padding: 38px 20px;
    }

    .additional-services-heading {
        margin-bottom: 30px;
    }

    .additional-services-heading h2 {
        font-size: 36px;
    }

    .additional-services-heading > p:last-child {
        font-size: 15px;
    }

    .service-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;

        padding: 22px 20px;
    }

    .service-row:hover {
        padding-left: 20px;
    }

    .service-row strong {
        min-width: 0;
        text-align: left;
    }

    .additional-services-button .price-button {
        width: 100%;
    }

    .contact-information {
        text-align: center;
    }

    .contact-information > p {
        margin-right: auto;
        margin-left: auto;
    }

    .contact-details {
        max-width: 520px;
        margin: 0 auto;

        text-align: left;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .reviews-header {
        margin-bottom: 42px;
    }

    .reviews-header p {
        font-size: 16px;
    }

    .review-summary {
        grid-template-columns: 1fr;
    }

    .review-summary-card:last-child {
        grid-column: auto;
    }

    .review-cta {
        padding: 38px 24px;
    }

    .google-reviews-section {
        width: 100%;
        margin-top: 40px;
        padding: 28px 14px;

        border-radius: 16px;
        overflow: hidden;
    }

    .google-reviews-section .reviews-header {
        margin-bottom: 20px;
    }

    .google-reviews-section h2 {
        font-size: 34px;
    }

    .google-reviews-section .reviews-header p:last-child {
        font-size: 15px;
        line-height: 1.65;
    }

    .google-reviews-widget {
        width: 100%;
        height: 455px;
        min-height: 0;
        max-height: 455px;

        border-radius: 12px;
        overflow: hidden;
    }

    .google-reviews-widget iframe {
        display: block;

        width: 100%;
        height: 455px !important;
        min-height: 0 !important;
        max-height: 455px !important;

        margin: 0;
        padding: 0;

        border: 0;
        border-radius: 12px;

        overflow: hidden;
    }

    .gallery {
        padding-right: 16px;
        padding-left: 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gallery-grid img {
        width: 100%;
        height: auto;

        aspect-ratio: 3 / 4;

        object-fit: cover;
        object-position: center;

        border-radius: 10px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================
   SMALL MOBILE DEVICES
========================== */

@media (max-width: 430px) {
.hero {
        padding: 75px 18px;
    }

    .hero-content h1 {
        letter-spacing: -1px;
    }

    .primary-button,
    .secondary-button,
    .btn {
        width: 100%;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .price-button {
        width: calc(100% - 40px);
        margin-right: 20px;
        margin-left: 20px;
    }

    .feature-list {
        padding: 0 25px;
    }

    .portfolio-page,
    .reviews-page {
        padding-right: 15px;
        padding-left: 15px;
    }

    .portfolio-header h4,
    .portfolio-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .portfolio-card {
        border-radius: 16px;
    }

    .portfolio-image-wrapper {
        min-height: 280px;
        padding: 18px;
    }

    .logo-showcase {
        padding: 20px;
    }

    .portfolio-logo-image {
        max-width: 260px;
        max-height: 230px;
    }

    .portfolio-card-content {
        padding: 28px 20px 32px;
    }

    .portfolio-card h2 {
        font-size: 32px;
    }

    .additional-services {
        padding: 32px 15px;
        border-radius: 16px;
    }

    .additional-services-heading h2 {
        font-size: 31px;
    }

    .service-info h3 {
        font-size: 17px;
    }

    .service-row strong {
        font-size: 15px;
    }

    .review-cta {
        padding: 32px 20px;
    }

    .review-cta .primary-button,
    .review-cta .secondary-button {
        width: 100%;
        min-width: 0;
    }

    .google-reviews-section {
        padding: 25px 10px;
    }

    .google-reviews-section h2 {
        font-size: 30px;
    }

    .google-reviews-section .section-label {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .google-reviews-widget {
        height: 430px;
        max-height: 430px;
    }

    .google-reviews-widget iframe {
        height: 430px !important;
        max-height: 430px !important;
    }

    .gallery {
        padding-right: 12px;
        padding-left: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-grid img {
        width: 100%;
        height: auto;

        aspect-ratio: 3 / 4;

        border-radius: 10px;
    }
}

/* =========================================================
   LIVECHAT WIDGET — COMPACT RESPONSIVE SIZE
========================================================= */

#chat-widget-container,
#chat-widget,
iframe[title*="LiveChat" i],
iframe[src*="livechatinc.com" i],
iframe[src*="livechat.com" i] {
    max-width: 340px !important;
}

#chat-widget-container[data-expanded="true"],
#chat-widget-container.chat-widget-expanded {
    width: 340px !important;
    height: min(540px, calc(100vh - 110px)) !important;

    right: 20px !important;
    bottom: 20px !important;
}

@media (max-width: 600px) {
    #chat-widget-container,
    #chat-widget,
    iframe[title*="LiveChat" i],
    iframe[src*="livechatinc.com" i],
    iframe[src*="livechat.com" i] {
        max-width: calc(100vw - 24px) !important;
    }

    #chat-widget-container[data-expanded="true"],
    #chat-widget-container.chat-widget-expanded {
        width: calc(100vw - 24px) !important;
        height: min(500px, calc(100dvh - 100px)) !important;

        right: 12px !important;
        bottom: 12px !important;
    }
}

/* UPDATED HOMEPAGE PORTFOLIO IMAGES */
.portfolio-home-visual{padding:24px;overflow:hidden}
.portfolio-home-visual img{display:block;width:100%;height:190px;object-fit:contain;object-position:center;filter:drop-shadow(0 14px 28px rgba(0,0,0,.45));transition:transform .35s ease,filter .35s ease}
.portfolio-home-card:hover .portfolio-home-visual img{transform:scale(1.045);filter:drop-shadow(0 18px 34px rgba(212,166,55,.18))}
.portfolio-home-cover img{height:220px;object-fit:contain}
@media(max-width:700px){.portfolio-home-visual img{height:170px}.portfolio-home-cover img{height:205px}}

/* DESKTOP LAYOUT SAFETY PATCH */
@media (min-width: 901px) {
  .header-container { gap: 24px; }
  .site-brand { flex: 0 1 265px; }
  .desktop-navigation { min-width: 0; gap: clamp(10px, 1.25vw, 22px); }
  .desktop-navigation a { font-size: clamp(.64rem, .72vw, .72rem); }
  .desktop-language { margin-left: 12px; }
  .mobile-menu, .menu-overlay, .menu-toggle { display: none !important; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .header-container { padding-inline: 22px; }
  .brand-text strong { font-size: 1.08rem; }
  .brand-text small { font-size: .48rem; letter-spacing: .15em; }
  .desktop-navigation { gap: 10px; }
  .desktop-navigation a { font-size: .62rem; letter-spacing: .045em; }
  .desktop-language { margin-left: 8px; gap: 5px; }
}

/* =========================================================
   FOOTER LAYOUT FIX — DESKTOP, TABLET, AND MOBILE
   Prevents footer links and contact details from running together.
========================================================= */

footer,
.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1.25fr) minmax(180px, 0.8fr) minmax(220px, 1fr);
    align-items: start;
    gap: 34px clamp(28px, 4vw, 64px);

    width: 100%;
    padding: 42px clamp(22px, 8vw, 120px);

    color: #b8b8b8;
    background: #080808;
    border-top: 1px solid rgba(255, 215, 0, 0.2);

    font-size: 14px;
    line-height: 1.7;
}

footer > *,
.site-footer > * {
    min-width: 0;
}

footer h2,
footer h3,
footer h4,
.site-footer h2,
.site-footer h3,
.site-footer h4 {
    margin: 0 0 10px;
    color: #ffffff;
    line-height: 1.25;
}

footer p,
.site-footer p {
    margin: 0 0 10px;
    color: #b8b8b8;
}

footer ul,
.site-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer nav,
footer .footer-links,
footer .quick-links,
.site-footer nav,
.site-footer .footer-links,
.site-footer .quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
}

footer a,
.site-footer a {
    display: inline-flex;
    align-items: center;

    color: #ffd700;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;

    overflow-wrap: anywhere;
    word-break: normal;
}

footer a:hover,
.site-footer a:hover {
    text-decoration: underline;
}

footer .footer-contact,
footer .contact-links,
footer .footer-info,
.site-footer .footer-contact,
.site-footer .contact-links,
.site-footer .footer-info {
    display: grid;
    gap: 8px;
}

footer .footer-bottom,
footer .copyright,
.site-footer .footer-bottom,
.site-footer .copyright {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

/* Adds separation even when the HTML contains plain consecutive links. */
footer a + a,
.site-footer a + a {
    margin-left: 14px;
}

footer br + a,
.site-footer br + a {
    margin-left: 0;
}

@media (max-width: 900px) {
    footer,
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
        padding: 38px 24px;
    }

    footer > :first-child,
    .site-footer > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    footer,
    .site-footer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 26px;

        padding: 34px 20px;
        text-align: left;
    }

    footer nav,
    footer .footer-links,
    footer .quick-links,
    .site-footer nav,
    .site-footer .footer-links,
    .site-footer .quick-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    footer a,
    .site-footer a {
        width: fit-content;
        max-width: 100%;
    }

    footer a + a,
    .site-footer a + a {
        margin-left: 0;
    }

    footer .footer-bottom,
    footer .copyright,
    .site-footer .footer-bottom,
    .site-footer .copyright {
        text-align: left;
    }
}


/* =========================================================
   FINAL GLOBAL HEADER / LANGUAGE LAYOUT FIX
   Keeps English layout unchanged and gives Spanish labels
   enough room without colliding with the language switch.
========================================================= */

/* Prevent flex children from forcing the header wider than the viewport. */
.header-container,
.desktop-navigation,
.desktop-language,
.site-brand {
    min-width: 0;
}

.desktop-language {
    white-space: nowrap;
}

.desktop-language a,
.desktop-language span {
    flex: 0 0 auto;
}

/* Spanish desktop navigation needs slightly tighter spacing
   because the translated labels are longer. */
@media (min-width: 1181px) {
    html[lang="es"] .header-container {
        gap: 12px;
        padding-inline: clamp(18px, 2.4vw, 38px);
    }

    html[lang="es"] .site-brand {
        flex: 0 0 175px;
    }

    html[lang="es"] .desktop-navigation {
        gap: clamp(7px, 0.7vw, 13px);
        margin-left: auto;
    }

    html[lang="es"] .desktop-navigation a {
        font-size: clamp(0.56rem, 0.58vw, 0.65rem);
        letter-spacing: 0.035em;
    }

    html[lang="es"] .desktop-language {
        gap: 5px;
        margin-left: 7px;
    }

    html[lang="es"] .desktop-language a {
        font-size: 0.65rem;
    }
}

/* At medium desktop widths the Spanish labels no longer fit cleanly.
   Use the same mobile drawer instead of allowing header overlap. */
@media (min-width: 901px) and (max-width: 1180px) {
    html[lang="es"] .desktop-navigation,
    html[lang="es"] .desktop-language {
        display: none !important;
    }

    html[lang="es"] .menu-toggle {
        display: flex !important;
    }

    html[lang="es"] .mobile-menu,
    html[lang="es"] .menu-overlay {
        display: flex;
    }

    html[lang="es"] .mobile-menu {
        display: flex;
    }

    html[lang="es"] .menu-overlay {
        display: block;
    }

    html[lang="es"] .header-container {
        padding-inline: 20px;
    }

    html[lang="es"] .site-brand {
        flex: 0 1 auto;
    }
}

/* Keep the normal mobile behavior consistent on every page. */
@media (max-width: 900px) {
    .desktop-navigation,
    .desktop-language {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }
}

/* =========================================================
   CONTACT DETAIL ICON POLISH
   Makes phone, email, and response-time icons easier to see.
========================================================= */

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 54px;
}

.contact-detail-icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: #f4c15d;
    background: rgba(244, 193, 93, 0.16);
    border: 1.5px solid rgba(244, 193, 93, 0.55);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.contact-detail-icon svg {
    display: block;
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 700px) {
    .contact-detail-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .contact-detail-icon svg {
        width: 23px;
        height: 23px;
    }
}

/* =========================================================
   SUBSCRIPTION NOTICE
   Prevents the Stripe message from appearing as a white box.
========================================================= */

.stripe-note {
    box-sizing: border-box;
    max-width: 900px;
    margin: 36px auto 0;
    padding: 20px;
    color: #ffffff;
    background: #1f1f1f;
    border: 1px solid #f5c400;
    border-radius: 14px;
    text-align: center;
}

.stripe-note strong {
    color: #f5c400;
}
