/*
 * Cabinet Craft & Design
 * Author: Philip Fox Jones
 * Web: foxpress.design
 * Email: philip@foxpress.design
 * Phone: 416.262.1770
 */

/* Color Scheme from Logo */
:root {
    --navy-blue: #182852;
    --dark-navy: #0f1a33;
    --light-navy: #2a4070;
    --accent-red: #e81d2c;
    --dark-red: #c4161f;
    --light-gray: #acaba8;
    --silver: #e0e0e0;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
    overflow-x: clip;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: clip;
    background: var(--dark-navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(198, 58, 53, 0.6);
    color: var(--white);
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #c63a35;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy-blue);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

/* Navigation */
.navbar {
    background: #191f3b;
    padding: 9px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid #a82f2b;
}

.navbar .container {
    max-width: 100%;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

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

.logo img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.logo a {
    text-decoration: none;
}

.logo {
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 0.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text a {
    text-decoration: none;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-red);
    letter-spacing: 1px;
}

.footer-logo-text .logo-main,
.footer-logo-text .logo-sub {
    color: var(--white);
}

.footer-logo-text .logo-sub {
    color: var(--accent-red);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.nav-menu a.nav-flash {
    animation: navFlash 0.1s ease;
    position: relative;
}


.nav-menu a:hover {
    color: #c63a35;
}

.nav-call-btn {
    background: rgba(198, 58, 53, 0.6) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    transition: background 0.2s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-call-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-call-btn:hover {
    background: #c63a35 !important;
    color: var(--white) !important;
}

.nav-map-btn {
    background: rgba(42, 64, 112, 0.6) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    transition: background 0.2s ease !important;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-map-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-map-btn:hover {
    background: #2a4070 !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0;
    margin-top: 80px;
    min-height: calc(100dvh - 80px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-5.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--silver);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
    min-height: calc(100dvh - 80px);
    max-height: calc(100dvh - 80px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background-color: var(--off-white);
    padding: 30px 0;
    overflow-x: clip;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect width='200' height='200' fill='none'/%3E%3Cline x1='0' y1='0' x2='200' y2='0' stroke='%23456' stroke-width='0.5'/%3E%3Cline x1='0' y1='40' x2='200' y2='40' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='0' y1='80' x2='200' y2='80' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='0' y1='120' x2='200' y2='120' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='0' y1='160' x2='200' y2='160' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='0' y1='0' x2='0' y2='200' stroke='%23456' stroke-width='0.5'/%3E%3Cline x1='40' y1='0' x2='40' y2='200' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='80' y1='0' x2='80' y2='200' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='120' y1='0' x2='120' y2='200' stroke='%23456' stroke-width='0.3'/%3E%3Cline x1='160' y1='0' x2='160' y2='200' stroke='%23456' stroke-width='0.3'/%3E%3Crect x='20' y='20' width='60' height='70' rx='2' fill='none' stroke='%23456' stroke-width='0.6'/%3E%3Cline x1='20' y1='35' x2='80' y2='35' stroke='%23456' stroke-width='0.4'/%3E%3Crect x='25' y='40' width='22' height='45' rx='1' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Crect x='53' y='40' width='22' height='45' rx='1' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Ccircle cx='40' cy='62' r='2' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Ccircle cx='68' cy='62' r='2' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Crect x='110' y='110' width='70' height='55' rx='2' fill='none' stroke='%23456' stroke-width='0.6'/%3E%3Cline x1='110' y1='125' x2='180' y2='125' stroke='%23456' stroke-width='0.4'/%3E%3Crect x='115' y='130' width='28' height='30' rx='1' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Crect x='148' y='130' width='28' height='30' rx='1' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Ccircle cx='129' cy='148' r='2' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3Ccircle cx='162' cy='148' r='2' fill='none' stroke='%23456' stroke-width='0.4'/%3E%3C/svg%3E") repeat;
    opacity: 0.07;
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 20px;
}

/* Services Grid (2x3) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.25rem;
    height: calc(100dvh - 140px);
}

.service-title-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
}

.service-title-card h2 {
    color: var(--navy-blue);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.service-title-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}


a.service-card,
a.service-card:link,
a.service-card:visited {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: var(--white);
    padding: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-10deg);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.service-icon {
    width: 40px;
    height: 40px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    color: var(--navy-blue);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.service-link {
    display: inline-block;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.2s ease;
}

.service-card:hover .service-link {
    border-bottom-color: var(--accent-red);
}

/* Featured Service Card */
a.service-card.service-card-featured,
a.service-card.service-card-featured:link,
a.service-card.service-card-featured:visited {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-navy);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-17.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.service-card-featured .service-card-header,
.service-card-featured p,
.service-card-featured .service-link {
    position: relative;
}

.service-card-featured .service-icon {
    background-color: var(--white);
    color: var(--navy-blue);
}

.service-card-featured h3 {
    color: var(--accent-red);
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-featured .service-link {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.service-card-featured:hover .service-link {
    border-bottom-color: var(--white);
}

/* About Section */
.about {
    background-color: var(--white);
    padding: 20px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-21.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.about-banner-quote {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto;
}

.about-banner-quote::before {
    content: '\201C';
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    opacity: 0.4;
    margin-bottom: 0.25rem;
}

.about-banner-attr {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 0.5px;
}

.about-text {
    max-width: 720px;
    margin: 1.5rem auto 0;
    text-align: center;
}

.about-text h2 {
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text .lead {
    font-size: 1.1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.highlight-item {
    text-align: center;
    padding: 1rem;
    background-color: var(--off-white);
    border-radius: 8px;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--white);
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
}

.highlight-item h4 {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
}

.highlight-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 20px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-11.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.testimonials .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
}

.testimonials .section-title {
    color: var(--white);
    opacity: 1 !important;
    transform: none !important;
}

.testimonials-track-wrapper {
    overflow: hidden;
    margin-top: 1rem;
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: testimonials-scroll 40s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.stars {
    color: #c63a35;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.author {
    color: var(--silver);
    font-size: 0.95rem;
    font-style: italic;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: clip;
    background-color: var(--off-white);
    padding: 5rem 3rem 1.5rem;
}

.contact-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
    text-align: left;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr auto;
    column-gap: 10rem;
    row-gap: 0.5rem;
    flex: 1;
    padding-right: 4rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-header .section-title {
    text-align: left;
    margin-bottom: 0.25rem;
}

.contact-header .section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

.contact-right .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-right .contact-form form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-right .contact-form .btn {
    margin-top: auto;
}

/* Contact Info Navy Card */
.contact-info {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: var(--dark-navy);
    color: var(--white);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-22.jpg') center/cover no-repeat;
    opacity: 0;
    /* opacity: 0.15; */
}

/* Contact Icon Circles */
.contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Contact Items Grid */
.contact-items-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/* Contact Items */
.contact-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0;
}

.contact-item p {
    color: var(--silver);
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.contact-item-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.contact-item-link:hover .contact-icon {
    background-color: var(--accent-red);
    color: var(--white);
}

.custom-marker {
    background: none;
    border: none;
}

.marker-link {
    display: block;
    cursor: pointer;
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}

.marker-link:hover {
    animation: marker-wiggle 0.5s ease;
}

@keyframes navFlash {
    0% { color: #c63a35; }
    50% { color: var(--white); }
    100% { color: #c63a35; }
}

@keyframes marker-wiggle {
    0% { transform: rotate(0); }
    20% { transform: rotate(-12deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(-6deg); }
    80% { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

.contact-form {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #c63a35;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-heading {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--silver);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--off-white);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--silver);
    border-left: 3px solid var(--navy-blue);
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    background: #c63a35;
}

.contact-form .btn:hover {
    background: #a82f2b;
}

/* Contact Social & Partners */
.contact-social {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    background: rgba(198, 58, 53, 0.6);
    transition: background 0.2s, color 0.2s;
}

.contact-social a:hover {
    background: #c63a35;
    color: var(--white);
}

.contact-social .contact-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: none;
}

.contact-social .contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-partners {
    position: relative;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.contact-partners h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contact-partners .partners-logo-list {
    gap: 1.5rem;
    justify-content: center;
}

.contact-partners .partners-logo-list img {
    height: 28px;
}

/* Contact Bottom */
.contact-bottom {
    grid-column: 1;
    align-self: end;
    text-align: center;
    z-index: 1;
}

.contact-bottom p {
    color: var(--text-light);
    font-size: 0.7rem;
    opacity: 0.5;
}

.contact-credit {
    grid-column: 2;
    align-self: end;
    text-align: center;
    font-size: 0.6rem;
    font-style: italic;
    opacity: 0.3;
    z-index: 1;
}

.contact-credit a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-credit a:hover {
    color: var(--accent-red);
}

/* Footer */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Icon Circles (40px) */
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-icon svg {
    width: 18px;
    height: 18px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

/* Footer Brand Column */
.footer-brand p {
    color: var(--silver);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    text-decoration: none;
}

.footer-social a:hover .footer-icon {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

/* Footer Links Column */
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
}

/* Footer Contact Column */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-red);
}

.footer-contact-item:hover .footer-icon {
    background-color: var(--accent-red);
}

.footer-contact-link {
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--accent-red);
}

/* Footer Partners */
.footer-partners {
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-partners h4 {
    color: var(--silver);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.mobile-break {
    display: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer-bottom p {
    color: var(--silver);
    font-size: 0.75rem;
    opacity: 0.4;
}

.footer-credit {
    font-size: 0.6rem !important;
    font-style: italic;
    opacity: 0.2;
}

.footer-credit a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--accent-red);
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
    padding: 0;
    justify-content: flex-start;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(24, 40, 82, 0.95), rgba(24, 40, 82, 0.7), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--silver);
    margin: 0;
}

/* Gallery Slideshow */
.gallery-slideshow {
    margin: 0;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: calc(100dvh - 80px);
}

.slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease;
}

.slideshow-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(24, 40, 82, 0.9), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
}

.slideshow-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0 0 0.25rem;
}

.slideshow-overlay p {
    color: var(--silver);
    font-size: 0.9rem;
    margin: 0;
}

.slideshow-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.slideshow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slideshow-dot.active {
    background: var(--white);
}

/* Slideshow Header (top-right overlay) */
.slideshow-header {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem 2rem 3rem;
    background: linear-gradient(to left, rgba(15, 26, 51, 0.85) 60%, transparent);
    z-index: 2;
    text-align: right;
}

.slideshow-header-text h2 {
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.slideshow-header-text p {
    color: var(--silver);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Gallery Link Icon */
.slideshow-gallery-link {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slideshow-gallery-link svg {
    width: 20px;
    height: 20px;
}

.slideshow-gallery-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Thumbnail Modal */
.thumbs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.thumbs-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbs-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
}

.thumbs-modal-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.thumbs-modal-close:hover {
    color: var(--accent-red);
}

.thumbs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.thumb-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item .thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 1.5rem 0.5rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Gallery Page Specific */
.gallery-hero {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0;
    margin-top: 80px;
    min-height: calc(100dvh - 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery-14.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gallery-hero p {
    font-size: 1.3rem;
    color: var(--silver);
}

.full-gallery {
    padding: 80px 0;
    background-color: var(--off-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background-color: var(--white);
    border: none;
    color: var(--navy-blue);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.5);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--navy-blue);
    color: var(--white);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.full-gallery-grid .gallery-item {
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.full-gallery-grid .gallery-item.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.8); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-red);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: 5px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(232, 29, 44, 0.8);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Gallery CTA Section */
.gallery-cta {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.gallery-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 2rem;
}

/* Active nav link */
.nav-menu a.active {
    color: #c63a35;
    pointer-events: none;
}

/* Section Navigation Arrows */
.section-nav {
    position: fixed;
    bottom: 60px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.section-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: #c63a35;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.section-nav button:hover {
    background-color: #a82f2b;
    transform: scale(1.1);
}

.section-nav-up {
    opacity: 0;
    pointer-events: none;
}

.section-nav-up.visible {
    opacity: 1;
    pointer-events: auto;
}

.section-nav-down.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Hero Features */
.hero-badge {
    display: inline-block;
    background-color: rgba(168, 47, 43, 0.25);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid #a82f2b;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Scroll Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Partner Logos */
.partners-logo-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-logo-list li a {
    display: block;
}

.partners-logo-list img {
    height: 30px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.partners-logo-list img:hover {
    opacity: 0.85;
}

.partner-text {
    color: var(--silver);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.partner-text:hover {
    opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        justify-content: center;
    }

    .navbar {
        border-bottom: none;
    }

    .navbar .container {
        position: static;
        z-index: auto;
    }

    .logo {
        position: relative;
        z-index: 3;
    }

    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #191f3b;
        z-index: 2;
    }

    .navbar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: #a82f2b;
        z-index: 4;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 80px;
        flex-direction: column;
        align-items: flex-start;
        background-color: #191f3b;
        width: 100%;
        text-align: left;
        padding: 1.25rem 20px;
        gap: 0.75rem;
        z-index: 1;
        border-bottom: 2px solid #a82f2b;
        transform: translateY(calc(-100% - 80px));
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.1s ease;
        box-shadow: none;
    }

    .nav-menu li:nth-last-child(-n+2) {
        position: absolute;
        right: 20px;
        width: 120px;
    }

    .nav-menu li:nth-last-child(-n+2) a {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 8px 0 !important;
    }

    .nav-menu li:nth-last-child(2) {
        top: 1.75rem;
    }

    .nav-menu li:last-child {
        top: calc(1.75rem + 36px + 0.75rem);
    }

    .nav-map-btn {
        display: inline-flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        pointer-events: auto;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
    }

    .hamburger {
        display: none;
    }

    .logo {
        padding-right: 0;
        border-right: none;
        margin-right: 0;
        cursor: pointer;
    }

    section {
        max-height: none;
        overflow: visible;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
        padding-right: 0;
    }

    .contact-info {
        margin-bottom: 14rem;
    }

    .contact-bottom {
        width: 100%;
        text-align: center;
        padding: 1rem 0 0.25rem;
    }

    .contact-credit {
        width: 100%;
        text-align: center;
    }

    .contact {
        padding: 3rem;
    }

    .partner-text-item {
        display: none;
    }

    .contact-right {
        min-height: 70svh;
        justify-content: flex-start;
    }

    .contact-right .contact-form {
        flex: none;
    }

    .contact-right .contact-form form {
        flex: none;
    }

    .contact-right .contact-form .btn {
        margin-top: 0.75rem;
    }

    .about-banner {
        padding: 2.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: left;
    }

    .partners-logo-list {
        gap: 2rem;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* Show gallery overlay on touch devices */
    .gallery-overlay {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .service-featured {
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.5rem;
    }

    .service-featured::before {
        background-image: url('images/gallery-19.jpg');
    }

    .service-card-header {
        justify-content: flex-start;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        flex: 1;
        text-align: center;
        font-size: 0.85rem;
        padding: 12px 20px;
        white-space: nowrap;
    }

    .highlights {
        gap: 0.75rem;
    }

    .about-banner {
        padding: 2rem 1.5rem;
    }

    .about-text {
        margin-top: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .gallery-grid,
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-hero {
        padding: 40px 0;
    }

    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .footer-content {
        grid-template-columns: 1.4fr 0.6fr;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0.5rem;
        order: -2;
    }

    .footer-logo-text .logo-main {
        font-size: 2.5rem;
    }

    .footer-logo-text .logo-sub {
        font-size: 1.5rem;
    }

    .footer-brand .footer-logo-text {
        align-items: flex-start;
    }

    .footer-contact {
        order: -1;
        text-align: left;
    }

    .footer-links {
        text-align: right;
    }

    .footer-contact-item a,
    .footer-contact-item span,
    .footer-contact h4,
    .footer-links h4,
    .footer-links a {
        font-size: 0.85rem;
    }

    .contact-item {
        text-align: left;
        flex-direction: row;
    }

    .mobile-break {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }

    .footer-credit {
        order: 0;
    }
}

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

    .services .container {
        max-height: none;
        padding: 0 15px;
    }

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

    .service-card {
        overflow: visible;
        padding: 1.5rem;
    }

    .slideshow-header {
        padding: 1.25rem 1.25rem 1.75rem 2.5rem;
    }

    .slideshow-header-text h2 {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .slideshow-header-text p {
        font-size: 0.85rem;
    }

    .slideshow-gallery-link {
        width: 36px;
        height: 36px;
    }

    .slideshow-gallery-link svg {
        width: 16px;
        height: 16px;
    }

    .service-featured {
        padding: 2rem 1.5rem;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }

    .gallery-grid,
    .full-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .partners-logo-list img {
        height: 24px;
    }

    .partners-logo-list {
        gap: 2rem;
    }

    .footer-contact-item {
        gap: 0.5rem;
    }

    .footer-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .footer-icon svg {
        width: 14px;
        height: 14px;
    }

    .section-nav {
        display: none;
    }

    html {
        scroll-snap-type: none;
    }

    section,
    .hero,
    .services .container,
    .about,
    .testimonials,
    .contact,
    .slideshow-container,
    .gallery-hero {
        min-height: calc(100svh - 80px);
    }

    .contact-info {
        padding: 1.25rem 1.5rem;
    }

    .contact-item p {
        font-size: 0.82rem;
    }

    .contact-social a {
        padding: 0.5rem 0.65rem;
        font-size: 0.8rem;
    }

    .contact-social .contact-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .contact-social .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-items-grid {
        margin-bottom: 1rem;
    }

    .contact-bottom {
        grid-column: 1;
        text-align: center;
    }

    .contact-credit {
        grid-column: 1;
        text-align: center;
    }

    .slideshow-overlay {
        padding-bottom: 2.5rem;
    }

    .slideshow-dots {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

}
