:root {
    --n: #062b4b;
    --g: #c9962e;
    --i: #102844;
    --t: #34495c;
    --m: #6b7d8d;
    --l: #dce2e7;
    --bg: #faf9f6;
    --s: 1180px;
    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--t);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
select,
textarea {
    font: inherit;
}
header {
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw 0 0px !important;
    box-shadow: 0 3px 12px #0000000b;
}
.brand {
    display: flex;
    align-items: center;
    height: 100%;
     margin-left: 0 !important;
}
.brand a {
    display: flex;
    align-items: center;
    height: 100%;
}
.brand-logo-img {
    height: 100%;           /* Fills the height of the header completely */
    max-height: 78px;       /* Desktop boundary ceiling */
    width: auto;            /* Scales width proportionally to prevent distortion */
    display: block;
    object-fit: cover;     /* Crops or fills cleanly if edge-to-edge background color is baked in */
    transition: max-height 0.25s ease;
}
.mark {
    font: 700 46px/1 var(--serif);
    color: var(--bg);
    position: relative;
}
.mark b {
    color: var(--g);
    font-size: 22px;
}
.brand strong {
    display: block;
    font: 700 20px var(--serif);
    color: #fff;
}
.brand small {
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--g);
}
nav {
    display: flex;
    align-items: center;
    gap: 27px;
    height: 100%;
}
nav a {
    font-size: 16px !important;
    font-weight: 700;
    position: relative;
    color: var(--n);           /* Explicitly sets text color */
    display: inline-block; 
    transition: color 0.25s ease, transform 0.25s ease;
}
nav a:not(.quote):hover {
    color: var(--g) !important;
    transform: translateY(-2px);
}
nav a:not(.quote):after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--g);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
nav a:hover:after,
nav a.active:after {
    transform: scaleX(1);
}
.quote {
    background: var(--g);
    color: #fff !important;
    padding: 13px 21px;
    border-radius: 3px;
    display: inline-block;
    transition: all 0.25s ease;
}
.quote:hover {
    background: var(--g) !important; /* Changes from Gold to Navy on hover */
    color: #fff !important;
    transform: translateY(-2px);    /* Lifts slightly */
    box-shadow: 0 4px 10px rgba(6, 43, 75, 0.15);
}
.menu {
    display: none;
    border: 0;
    background: 0;
    font-size: 25px;
}
.hero {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 465px;
    background: var(--bg);
    align-items: stretch;
    margin-top: 0 !important;
}
.hero-copy {
    padding: 20px 6vw 35px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, #fff 0, #fff 84%, #ffffffd9);
}
.ey {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--n);
    margin: 0 0 7px;
    text-transform: uppercase;
}
.hero h1 {
    font: 600 clamp(35px, 3.4vw, 50px) / 1.12 var(--serif);
    color: var(--i);
    margin: 0;
}
.hero h2 {
    font-size: 23px;
    font-weight: 500;
    color: var(--g);
    margin: 10px 0 7px;
}
.hero-copy h2 {
    font-family: var(--serif) !important;
    font-size: 26px !important;       /* Large and authoritative */
    font-weight: 700 !important;
    font-style: italic !important;
    line-height: 1.2 !important;
    color: var(--g) !important;       /* Deep Navy/Indigo */
    margin: 22px 0 24px 0 !important;
    white-space: pre-line !important; /* Forces layout to respect broken lines */
}
.hero p {
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: var(--t) !important;            /* Muted corporate slate tint */
    max-width: 580px !important;
    margin: 15px 0 30px 0 !important;
    padding-left: 20px !important;         /* Space for layout boundary line */
    border-left: 2px solid var(--l);
}
.actions {
    display: flex;
    gap: 17px;
    margin: 20px 0 29px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 11px 20px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--n);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}
.dark {
    background: var(--n);
    color: #fff;
}
.dark:hover {
    background: var(--g);        
    border-color: var(--g);
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(6, 43, 75, 0.2);
}
.outline {
    background: #fff;
    color: var(--n);
}
.outline:hover {
    background: var(--g);        /* Fills background completely on hover */
    border-color: var(--g);
    color: #fff;                 /* Inverts text color to white for contrast */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 43, 75, 0.15);
}
.gold {
    background: var(--g);
    border-color: var(--g);
    color: #fff;
}
.gold:hover {
    
    background: var(--n);
    border-color: var(--n);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 43, 75, 0.2);
}
.trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}
.trust div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ico {
    width: 32px;
    height: 32px;
    border: 2px solid var(--g);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--g);
}
.trust b,
.trust small {
    display: block;
}
.trust b {
    font-size: 16px;
    color: var(--i);
}
.trust small {
    font-size: 14px;
    color: var(--m);
}
.hero-img {
    min-height: 545px;
    background:
        linear-gradient(90deg, #ffffff00, #00000018),
        url("assets/hero-house1.webp") center/cover no-repeat,
        #bfc5c9;
        border-radius: 24px;                  /* Softens the sharp rectangular edges */
        box-shadow: 0 15px 35px rgba(6, 43, 75, 0.1); /* Adds a luxurious depth shadow */
        margin: 15px 15px 15px 0px; 
	transition: transform 0.1s linear,
        box-shadow 0.3s ease;
        transform-style: preserve-3d;
        will-change: transform;
}
.hero-img:hover {
    box-shadow: 0 25px 50px rgba(6, 43, 75, 0.22); /* 2. deepens shadow to look like it's lifting closer to the user */
}
.center {
    text-align: center;
}
.teaser {
    padding: 48px 20px 52px;
}
.teaser h2 {
    font: 600 30px var(--serif);
    color: var(--i);
    margin: 5px 0;
}
.teaser p {
    color: var(--t);
    font-size: 17px;
}
.teaser h3 {
    color: var(--i);
    font-size: 17px;
    color: var(--g);
}
.teaser .btn {
    margin-top: 16px;
}

#about {
    background-color: var(--n); /* You can change this to any color code you like! */
    /* Add any other custom styles just for the About section right here */
}

/* Example: Customize just the text headers inside your About section */
#about h2 {
    color: var(--g); /* Changes your About title to your brand Navy blue */
}
#about h3 {
    color: var(--g); /* Changes your About title to your brand Gold */
}
#about p {
    color: var(--bg); /* Changes your About title to your brand Navy blue */
}

.section {
    padding: 62px max(5vw, calc((100vw - var(--s)) / 2));
}
.why {
    background: var(--n);
    color: #fff;
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 35px;
}
.why h2 {
    font: 600 33px/1.25 var(--serif);
    margin: 5px 0 12px;
}
.why p {
    font-size: 17px;
    color: var(--bg);
}
.whygrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 18px;
}
.whyitem {
    display: flex;
    gap: 11px;
}
.whyitem span {
    flex: 0 0 43px;
    height: 43px;
    border: 1px solid var(--g);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--g);
}
.whyitem h3 {
    font-size: 17px;
    margin: 0;
}
.whyitem p {
    font-size: 14px;
    margin: 2px 0;
}
.three {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.9fr;
    gap: 38px;
}
.three > div + div {
    border-left: 1px solid var(--l);
    padding-left: 35px;
}
.three h2,
.section h2 {
    font: 600 33px/1.25 var(--serif);
    color: var(--g);
    margin: 5px 0 12px;
}
.three p {
    font-size: 17px;
}
.three ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: grid;
    gap: 11px;
    font-size: 17px;
    font-weight: 500;
    color: var(--g);
}
.quoteMark {
    font: 700 45px var(--serif);
    color: #cbd2d8;
}
.three blockquote {
    font-size: 17px;
    line-height: 1.5;
    margin: 5px 0 16px;
    Color: var(--bg);
}
.client {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--g);
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dfe6eb;
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--n);
}
.client small {
    display: block;
    font-size: 13px;
    color: var(--bg);
}
.service {
    background: #f8fafb;
}
/* ==========================================================================
   📦 NEW: 3-COLUMN SERVICES BOX GRID LAYOUT
   ========================================================================== */

/* Turns the main container into a flexible grid */
.service-list {
    max-width: 1100px;
    margin: 30px auto auto;
    border: none; /* Removes the old list border */
    background: transparent;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal boxes in a row */
    gap: 24px; /* Crisp spacing between boxes */
}

/* Transforms each row into an independent card/box */
.service-row {
    background: #ffffff;
    border: 1px solid var(--l);
    border-radius: 8px !important; /* Softens corners */
    padding: 24px;
    display: flex;
    flex-direction: column; /* Stacks contents inside the box vertically */
    align-items: flex-start; /* Aligns content to the left */
    justify-content: space-between; /* Pushes the "Learn More" link to the very bottom */
    min-height: 220px; /* Ensures all boxes stay uniform in height */
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s ease,
                background-color 0.3s ease !important;
}

/* Icon block custom styling inside the box */
.service-row span {
    width: 44px;
    height: 44px;
    border: 1px solid var(--g);
    display: grid;
    place-items: center;
    color: var(--n);
    border-radius: 6px;
    font-size: 20px;
    background: #f8fafb;
    flex-shrink: 0;
}

/* Headers inside the boxes */
.service-row h3 {
    margin: 8px 0 0;
    color: var(--i);
    font: 600 24px var(--serif);
}

/* Descriptions inside the boxes */
.service-row p {
    margin: 4px 0 12px;
    font-size: 16px;
    color: var(--m);
    line-height: 1.5;
}

/* Link alignment handling at the bottom of the box */
.service-row a {
    font-size: 16px;
    color: var(--g);
    font-weight: 800;
    margin-top: auto; /* Forces the link to lock to the bottom edge */
    display: inline-block;
}

/* 🔄 Hover state enhancements for the card appearance */
.service-row:hover {
    background: var(--n) !important;
    transform: scale(1.03) translateY(-4px) !important; /* Inherits your lifting effect */
    box-shadow: 0 12px 24px rgba(6, 43, 75, 0.12) !important;
    border-color: var(--n);
}

.service-row:hover h3,
.service-row:hover span {
    color: #ffffff !important;
}

.service-row:hover span {
    background: var(--g);
    border-color: var(--g);
}

.service-row:hover p {
    color: var(--g) !important;
}

.service-row:hover a {
    color: var(--g) !important;
}

/* 📱 Responsive fallbacks for smaller viewports */
@media (max-width: 992px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr); /* Drops to 2 boxes on tablet devices */
        padding: 0 20px;
    }
}

@media (max-width: 650px) {
    .service-list {
        grid-template-columns: 1fr; /* Drops to 1 stackable box on mobile viewports */
    }
}
.resources {
    background: #fff;
}
.reslayout {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 32px;
}
.tabs {
    display: grid;
    gap: 7px;
}
.tab {
    padding: 12px 14px;
    border: 1px solid var(--l);
    background: #fff;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--i);
    cursor: pointer;
}
.tab.active,
.tab:hover {
    background: var(--n);
    color: #fff;
}
.panel {
    display: none;
}
.panel.active {
    display: block;
}
.panel h3 {
    font: 600 24px var(--serif);
    color: var(--g);
    margin: 0;
}
.panel details {
    border-bottom: 1px solid var(--l);
}
summary {
    cursor: pointer;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--i);
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary:after {
    content: "+";
    float: right;
    color: var(--g);
    font-size: 18px;
}
details[open] summary:after {
    content: "−";
}
details p {
    font-size: 16px;
    color: var(--m);
    margin: 0 0 14px;
}
.contact {
    background: #f8fafb;
}
.contactgrid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 35px;
}
.card {
    background: #fff;
    border: 1px solid var(--l);
    padding: 27px;

}
.card h3 {
    font: 600 24px var(--serif);
    color: var(--i);
    margin: 0;
}
.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 17px;
}
.form input,
.form select,
.form textarea {
    padding: 11px;
    border: 1px solid var(--g);
    font-size: 15px;
    border-radius: 8px !important;
}
.form textarea {
    grid-column: 1/-1;
    min-height: 110px;
    margin-bottom: 20px !important;
}
.info {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}
.info div {
    border-bottom: 1px solid var(--l);
    padding: 10px 0;
}
.info b {
    font-size: 15px;
    color: var(--g);
}
.info p {
    font-size: 14px;
    color: var(--n);
    margin: 2px 0;
}
/* ==========================================================================
   📐 FIXED: FULL-WIDTH BREAKOUT BANNER
   ========================================================================== */

.quotehero {
    /* 🟢 FORCES BANNER TO BREAK OUT TO FULL EDGE-TO-EDGE SCREEN WIDTH */
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;

    /* Maintains your background image scaling configurations */
    min-height: 300px;
    background: linear-gradient(90deg, #ffffff00, #00000000), 
                url("assets/quote-banner.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.quotehero h2 {
    font: 600 33px var(--serif);
    margin: 5px 0;
}
.quotehero p {
    margin: 0;
    font-size: 10px;
}
.quotelayout {
    max-width: 1100px;
    margin: 42px auto;
    display: grid;
    grid-template-columns: 1.45fr 0.7fr;
    gap: 30px;
}
.quotelayout h3 {
    color: var(--n) !important;
    font-size: 28px !important;
}
.promise {
    display: grid;
    gap: 12px;
}
.promise div {
    background: #f8fafb;
    border: 1px solid var(--l);
    border-radius: 8px !important;
    padding: 18px;
}
.promise b {
    display: block;
    color: var(--i);
    font-size: 17px;
}
.promise span {
    color: var(--g);
    font-size: 23px;
}
.promise p {
    font-size: 15px;
    color: var(--m);
    margin: 2px 0;
}
.google-map-section {
  width: 100%;
  padding: 0 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.google-map-section iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
}
.google-map-link {
  display: block;
  width: 100%;
  height: 310px;
  cursor: pointer;
}
footer {
    background: #f2e5cb;
    color: #fff;
    padding: 43px max(5vw, calc((100vw - var(--s)) / 2)) 14px;
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 0.9fr 1fr;
    gap: 25px;
}
.footer-logo-img {
    height: 78px !important;    /* Clean, balanced footprint proportional to your footer text columns */
    width: auto !important;     /* Safeguards against graphic aspect ratio distortion */
    display: block !important;
    object-fit: contain !important;
    background: #f1e5ac !important;

    /* 🟢 THE INVERSION FILTER: Flips the image colors dynamically in real-time.
       Transforms the white background to disappear into the navy footer, 
       and inverts your navy text into sharp, crisp, high-contrast solid white! 
    filter: invert(1) brightness(2) contrast(120%) !important;*/
    
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Subtle, responsive scaling lift when hovered over by a client cursor */
.footer-logo-img:hover {
    transform: scale(1.03);
}
.foot h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--g);
}
.foot a {
    display: block;
    color: var(--n);
    font-size: 15px;
    font-weight: 900;
    margin: 5px 0;
    transition: color 0.45s cubic-bezier(0.25, 1, 0.5, 1), 
          transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.foot p {
    font-size: 17px;
    color: #c8d3dd;
}
.copy {
    grid-column: 1/-1;
    border-top: 1px solid #ffffff20;
    text-align: center;
    padding-top: 12px;
    font-size: 14px;
    color: var(--n);
    font-weight: bold;
}
@media (max-width: 900px) {
    nav {
        gap: 13px;
    }
    .brand-logo-img {
        max-height: 65px;   /* Shrinks the logo safely inside the tablet layout */
        }
         .footer-logo-img {
        max-height: 65px !important; /* Margins scaled down slightly for compact mobile grids */
    }
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        padding: 50px 7vw;
    }
    .hero-img {
        min-height: 320px;
    }
    .quotehero {
        min-height: 300px;
    }
    .why {
        grid-template-columns: 1fr;
    }
    .whygrid {
        grid-template-columns: 1fr 1fr;
    }
    .three,
    .contactgrid,
    .quotelayout {
        grid-template-columns: 1fr;
    }
    .three > div + div {
        border-left: 0;
        border-top: 1px solid var(--l);
        padding: 28px 0 0;
    }
    .reslayout {
        grid-template-columns: 1fr;
    }
    footer {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 855px) {
    header {
        height: 70px;
    }
    .brand-logo-img {
        max-height: 55px;   /* Shrinks further to guarantee it doesn't crowd mobile viewports */
    }
          .footer-logo-img {
        max-height: 55px !important; /* Margins scaled down slightly for compact mobile grids */
    }
    .menu {
        display: block;
	color: var(--n) !important;
       	 opacity: 1 !important; /* Removes any faint transparency layouts */
        cursor: pointer;
    }
    nav {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        height: auto;
        background: var(--n);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 20px;
        gap: 0;
        border-bottom: 1px solid var(--l);
	opacity: 0;
    	visibility: hidden;
    	transform: translateY(-10px);
    	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    nav.open {
        opacity: 1;
    	visibility: visible;
    	transform: translateY(0);
    }
    nav a {
        padding: 11px 5px;
  	color: var(--bg);
    }
    nav a:not(.quote):after {
        bottom: 2px;
    }
    .brand strong {
        font-size: 16px;
    }
    .brand small {
        font-size: 6px;
    }
    .quotehero {
        min-height: 300px;
    }
    .mark {
        font-size: 38px;
    }
    .whygrid {
        grid-template-columns: 1fr;
    }
    .form {
        grid-template-columns: 1fr;
    }
    .form textarea {
        grid-column: auto;
    }
    .service-row {
        grid-template-columns: 45px 1fr;
    }
    .service-row > a {
        grid-column: 2;
    }
    footer {
        grid-template-columns: 1fr;
    }
    .three {
        gap: 25px;
    }
}
/* 🟢 Paste this right at the footer of your style.css asset */
@media (min-width: 701px) and (max-width: 1024px) {
    .three, .whygrid {
        grid-template-columns: 1fr 1fr !important; /* Transforms into balanced 2-column configurations */
    }
    .service-list {
        grid-template-columns: 1fr 1fr !important;
    }

}
/* 1. First, tell all these elements to prepare for smooth movement */
.trust div, 
.whyitem,
.tab,
.form input,
.form select,
.form textarea,
.promise div,
.panel details,
.service-row {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s ease,
                background-color 0.3s ease !important;
}

/* 2. Group them together under the hover action rules */ 
.trust div:hover, 
.whyitem:hover,
.tab:hover,
.form input:hover,
.form select:hover,
.form textarea:hover,
.promise div:hover,
.panel details:hover,
.service-row:hover {
    transform: scale(1.03) translateY(-4px) !important; /* Lifts them up and scales them slightly */
    box-shadow: 0 10px 24px rgba(6, 43, 75, 0.08) !important; /* Adds a beautiful floating shadow */
    cursor: pointer; /* Changes mouse to a hand icon so users know they can interact */
    border-radius: 8px !important;
}
.info div:hover {
    transform: scale(1.03) translateY(-4px) !important; 
    box-shadow: 0 12px 28px rgba(6, 43, 75, 0.18) !important; 
    cursor: pointer; 
    border-radius: 8px !important;       
    padding: 10px 16px !important;        
    border: none !important;             

    /* Brand Color Metamorphosis */
    background-color: var(--n) !important; /* Changes the card background to your deep brand Navy */
}

/* Turns the titles (Email, Phone, Address, Hours) into striking gold on hover */
.info div:hover b {
    color: var(--g) !important; 
}

/* Turns the actual detail values (your address text, numbers, etc.) into clean white text on hover */
.info div:hover p {
    color: #ffffff !important; 
}
.foot a:hover {
    color: var(--g) !important;       
    transform: translateX(2px) !important; 
    font-weight: 700 !important;       /* 🟢 ADDED: Makes letters bold on hover */
    cursor: pointer;
}
#home,
.hero,
.quotehero {
    scroll-margin-top: 82px !important; /* 👈 Creates a clean boundary so the navigation bar never covers the tops of these images */
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
    visibility: hidden;
}

/* 2. This is the active state that triggers the beautiful smooth fade and lift */
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* 📱 Tablet Navigation Layout Optimization */
@media (min-width: 993px) and (max-width: 1075px) {
    header {
        padding: 0 4vw !important; /* Balances structural layout edges */
    }
    
    nav {
        margin-left: auto;        /* 🟢 Pushes the entire navigation menu to the far right */
        gap: 13px !important;     /* 🟢 Increases space between each individual link */
    }

    nav a {
        font-size: 14px !important; /* Slightly reduces font size to prevent layout crowding */
    }
}
/* 📱 Tablet Navigation Layout Optimization */
@media (min-width: 933px) and (max-width: 992px) {
    header {
        padding: 0 4vw !important; /* Balances structural layout edges */
    }
    
    nav {
        margin-left: auto;        /* 🟢 Pushes the entire navigation menu to the far right */
        gap: 13px !important;     /* 🟢 Increases space between each individual link */
    }

    nav a {
        font-size: 13px !important; /* Slightly reduces font size to prevent layout crowding */
    }
}
/* 📱 Tablet Navigation Layout Optimization */
@media (min-width: 881px) and (max-width: 932px) {
    header {
        padding: 0 4vw !important; /* Balances structural layout edges */
    }
    
    nav {
        margin-left: auto;        /* 🟢 Pushes the entire navigation menu to the far right */
        gap: 13px !important;     /* 🟢 Increases space between each individual link */
    }

    nav a {
        font-size: 12px !important; /* Slightly reduces font size to prevent layout crowding */
    }
}
/* 📱 Tablet Navigation Layout Optimization */
@media (min-width: 855px) and (max-width: 880px) {
    header {
        padding: 0 4vw !important; /* Balances structural layout edges */
    }
    
    nav {
        margin-left: auto;        /* 🟢 Pushes the entire navigation menu to the far right */
        gap: 10px !important;     /* 🟢 Increases space between each individual link */
    }

    nav a {
        font-size: 12px !important; /* Slightly reduces font size to prevent layout crowding */
    }
}
/* ==========================================================================
   🔗 FOOTER SOCIAL MEDIA LINKS
   ========================================================================== */

.foot-socials {
    display: flex;
    gap: 16px;          /* Clean spatial separation between items */
    margin-top: 18px;   /* Pushes layout down below address data boundaries */
    align-items: center;
}

.foot-socials a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--n); /* Matches your brand dark navy theme */
    color: #ffffff !important;  /* Sharp white icon fill contrast */
    border-radius: 50%;         /* Circular frame background wrapper */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Smooth scaling and positioning motion setup */
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s ease,
                color 0.3s ease !important;
}

.foot-socials a svg {
    width: 18px;                /* Controls physical graphic scaling footprint */
    height: 18px;
}

/* 🔄 Hover state logic mirroring your site's physical card lift behavior */
.foot-socials a:hover {
    background-color: var(--g) !important; /* Transitions background to Gold on hover */
    color: var(--n) !important;            /* Shifts icon graphic tint to Navy */
    transform: scale(1.12) translateY(-3px) !important; /* Clean floating lift action */
    box-shadow: 0 4px 10px rgba(6, 43, 75, 0.25);
    cursor: pointer;
}