/*
Theme Name: GS Microcement Pro
Theme URI: https://www.gsmicrocement.co.uk
Author: GS Microcement
Author URI: https://www.gsmicrocement.co.uk
Description: A premium, high-end theme for GS Microcement - London's premier microcement specialists
Version: 2.0.0
Template: varia-wpcom
License: GNU General Public License v2 or later
Text Domain: gsmicrocement-theme
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors */
    --gs-black: #000000;
    --gs-white: #ffffff;
    --gs-gray-50: #fafafa;
    --gs-gray-100: #f5f5f5;
    --gs-gray-200: #e5e5e5;
    --gs-gray-300: #d4d4d4;
    --gs-gray-400: #a3a3a3;
    --gs-gray-500: #737373;
    --gs-gray-600: #525252;
    --gs-gray-700: #404040;
    --gs-gray-800: #262626;
    --gs-gray-900: #171717;
    
    /* Brand Colors */
    --gs-primary: #171717;
    --gs-accent: #171717;
    
    /* Typography */
    --gs-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --gs-font-display: "Inter", var(--gs-font-sans);
    
    /* Font Sizes - Fluid Typography */
    --gs-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --gs-text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --gs-text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --gs-text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --gs-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --gs-text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --gs-text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --gs-text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);
    --gs-text-5xl: clamp(3rem, 2rem + 5vw, 4.5rem);
    
    /* Spacing */
    --gs-space-1: 0.25rem;
    --gs-space-2: 0.5rem;
    --gs-space-3: 0.75rem;
    --gs-space-4: 1rem;
    --gs-space-5: 1.25rem;
    --gs-space-6: 1.5rem;
    --gs-space-8: 2rem;
    --gs-space-10: 2.5rem;
    --gs-space-12: 3rem;
    --gs-space-16: 4rem;
    --gs-space-20: 5rem;
    --gs-space-24: 6rem;
    --gs-space-32: 8rem;
    
    /* Layout */
    --gs-max-width: 1280px;
    --gs-max-width-narrow: 800px;
    --gs-header-height: 80px;
    
    /* Borders */
    --gs-radius-sm: 6px;
    --gs-radius-md: 8px;
    --gs-radius-lg: 12px;
    --gs-radius-xl: 16px;
    --gs-radius-2xl: 24px;
    
    /* Shadows */
    --gs-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --gs-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --gs-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --gs-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --gs-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --gs-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --gs-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --gs-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
}

body {
    font-family: var(--gs-font-sans);
    font-size: var(--gs-text-base);
    line-height: 1.6;
    color: var(--gs-gray-700);
    background-color: var(--gs-white);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Hide default WordPress elements on custom front page */
body.home .entry-title,
body.home .entry-header,
body.page-template-front-page .site-header,
body.page-template-front-page .site-footer,
body.page-template-front-page #masthead,
body.page-template-front-page #colophon {
    display: none !important;
}

/* ============================================
   CONTAINER
   ============================================ */
.gs-container {
    width: 100%;
    max-width: var(--gs-max-width);
    margin: 0 auto;
    padding: 0 var(--gs-space-6);
}

.gs-container--narrow {
    max-width: var(--gs-max-width-narrow);
}

@media (min-width: 768px) {
    .gs-container {
        padding: 0 var(--gs-space-8);
    }
}

@media (min-width: 1024px) {
    .gs-container {
        padding: 0 var(--gs-space-12);
    }
}

/* ============================================
   HEADER
   ============================================ */
.gs-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gs-white);
    border-bottom: 1px solid var(--gs-gray-100);
    transition: all var(--gs-transition);
}

.gs-header--scrolled {
    box-shadow: var(--gs-shadow-md);
}

.gs-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--gs-header-height);
    max-width: var(--gs-max-width);
    margin: 0 auto;
    padding: 0 var(--gs-space-6);
}

@media (min-width: 768px) {
    .gs-header__inner {
        padding: 0 var(--gs-space-8);
    }
}

/* Logo */
.gs-header__logo {
    flex-shrink: 0;
}

.gs-header__logo a {
    display: flex;
    align-items: center;
}

.gs-header__logo img,
.gs-logo {
    height: 36px;
    width: auto;
}

/* Navigation */
.gs-header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .gs-header__nav {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.gs-nav {
    display: flex;
    align-items: center;
    gap: var(--gs-space-1);
}

.gs-nav__item a {
    display: block;
    padding: var(--gs-space-2) var(--gs-space-4);
    font-size: var(--gs-text-sm);
    font-weight: 500;
    color: var(--gs-gray-600);
    border-radius: var(--gs-radius-md);
    transition: all var(--gs-transition-fast);
}

.gs-nav__item a:hover,
.gs-nav__item--active a {
    color: var(--gs-gray-900);
    background: var(--gs-gray-50);
}

/* Header CTA */
.gs-header__cta {
    display: none;
}

@media (min-width: 1024px) {
    .gs-header__cta {
        display: block;
    }
}

/* Mobile Toggle */
.gs-header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--gs-radius-md);
    transition: background var(--gs-transition-fast);
}

.gs-header__toggle:hover {
    background: var(--gs-gray-100);
}

@media (min-width: 1024px) {
    .gs-header__toggle {
        display: none;
    }
}

.gs-header__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gs-gray-800);
    border-radius: 1px;
    transition: all var(--gs-transition-fast);
}

.gs-header__toggle[aria-expanded="true"] .gs-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.gs-header__toggle[aria-expanded="true"] .gs-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.gs-header__toggle[aria-expanded="true"] .gs-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.gs-mobile-menu {
    position: fixed;
    top: var(--gs-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gs-white);
    padding: var(--gs-space-8);
    transform: translateX(100%);
    transition: transform var(--gs-transition);
    overflow-y: auto;
}

.gs-mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .gs-mobile-menu {
        display: none;
    }
}

.gs-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--gs-space-2);
    margin-bottom: var(--gs-space-8);
}

.gs-mobile-nav a {
    display: block;
    padding: var(--gs-space-4);
    font-size: var(--gs-text-lg);
    font-weight: 500;
    color: var(--gs-gray-900);
    border-radius: var(--gs-radius-md);
    transition: background var(--gs-transition-fast);
}

.gs-mobile-nav a:hover {
    background: var(--gs-gray-100);
}

/* ============================================
   BUTTONS
   ============================================ */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--gs-space-2);
    padding: var(--gs-space-3) var(--gs-space-6);
    font-family: var(--gs-font-sans);
    font-size: var(--gs-text-sm);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border-radius: var(--gs-radius-md);
    transition: all var(--gs-transition-fast);
    cursor: pointer;
}

.gs-btn--primary {
    background: var(--gs-gray-900);
    color: var(--gs-white);
}

.gs-btn--primary:hover {
    background: var(--gs-gray-800);
}

.gs-btn--secondary {
    background: var(--gs-white);
    color: var(--gs-gray-900);
    border: 1px solid var(--gs-gray-300);
}

.gs-btn--secondary:hover {
    background: var(--gs-gray-50);
    border-color: var(--gs-gray-400);
}

.gs-btn--outline {
    background: transparent;
    color: var(--gs-gray-900);
    border: 1px solid var(--gs-gray-900);
}

.gs-btn--outline:hover {
    background: var(--gs-gray-900);
    color: var(--gs-white);
}

.gs-btn--dark {
    background: var(--gs-gray-900);
    color: var(--gs-white);
}

.gs-btn--dark:hover {
    background: var(--gs-black);
}

.gs-btn--header {
    background: var(--gs-gray-900);
    color: var(--gs-white);
    padding: var(--gs-space-2) var(--gs-space-5);
}

.gs-btn--header:hover {
    background: var(--gs-gray-700);
}

.gs-btn--large {
    padding: var(--gs-space-4) var(--gs-space-8);
    font-size: var(--gs-text-base);
}

.gs-btn--full {
    width: 100%;
}

.gs-btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.gs-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: var(--gs-header-height);
    overflow: hidden;
}

.gs-hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gs-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.gs-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: var(--gs-space-16) 0;
}

.gs-hero__title {
    font-family: var(--gs-font-display);
    font-size: var(--gs-text-5xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gs-white);
    margin-bottom: var(--gs-space-6);
    letter-spacing: -0.02em;
}

.gs-hero__subtitle {
    font-size: var(--gs-text-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--gs-space-8);
    max-width: 540px;
}

.gs-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gs-space-4);
}

.gs-hero .gs-btn--primary {
    background: var(--gs-white);
    color: var(--gs-gray-900);
}

.gs-hero .gs-btn--primary:hover {
    background: var(--gs-gray-100);
}

.gs-hero .gs-btn--secondary {
    background: transparent;
    color: var(--gs-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.gs-hero .gs-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gs-white);
}

/* ============================================
   SECTIONS
   ============================================ */
.gs-section {
    padding: var(--gs-space-20) 0;
}

@media (min-width: 768px) {
    .gs-section {
        padding: var(--gs-space-24) 0;
    }
}

@media (min-width: 1024px) {
    .gs-section {
        padding: var(--gs-space-32) 0;
    }
}

.gs-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--gs-space-12);
}

.gs-section__label {
    display: inline-block;
    font-size: var(--gs-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gs-gray-500);
    margin-bottom: var(--gs-space-3);
}

.gs-section__title {
    font-family: var(--gs-font-display);
    font-size: var(--gs-text-4xl);
    font-weight: 700;
    color: var(--gs-gray-900);
    margin-bottom: var(--gs-space-4);
    letter-spacing: -0.02em;
}

.gs-section__subtitle {
    font-size: var(--gs-text-lg);
    color: var(--gs-gray-500);
}

.gs-section__footer {
    text-align: center;
    margin-top: var(--gs-space-12);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.gs-services {
    background: var(--gs-gray-50);
}

.gs-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gs-space-6);
}

@media (min-width: 640px) {
    .gs-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gs-services__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--gs-space-8);
    }
}

.gs-service-card {
    background: var(--gs-white);
    border-radius: var(--gs-radius-xl);
    overflow: hidden;
    box-shadow: var(--gs-shadow);
    transition: all var(--gs-transition);
}

.gs-service-card:hover {
    box-shadow: var(--gs-shadow-lg);
    transform: translateY(-4px);
}

.gs-service-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--gs-gray-200);
}

.gs-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gs-transition-slow);
}

.gs-service-card:hover .gs-service-card__image img {
    transform: scale(1.05);
}

.gs-service-card__content {
    padding: var(--gs-space-6);
}

.gs-service-card__title {
    font-size: var(--gs-text-lg);
    font-weight: 600;
    color: var(--gs-gray-900);
    margin-bottom: var(--gs-space-2);
}

.gs-service-card__text {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-500);
    margin-bottom: var(--gs-space-4);
}

.gs-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--gs-space-1);
    font-size: var(--gs-text-sm);
    font-weight: 600;
    color: var(--gs-gray-900);
    transition: gap var(--gs-transition-fast);
}

.gs-service-card__link:hover {
    gap: var(--gs-space-2);
    text-decoration: underline;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.gs-why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gs-space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .gs-why-us__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--gs-space-16);
    }
}

.gs-why-us__content .gs-section__title {
    text-align: left;
}

.gs-why-us__text {
    font-size: var(--gs-text-lg);
    color: var(--gs-gray-600);
    margin-bottom: var(--gs-space-8);
}

.gs-why-us__features {
    display: flex;
    flex-direction: column;
    gap: var(--gs-space-4);
    margin-bottom: var(--gs-space-8);
}

.gs-why-us__feature {
    display: flex;
    align-items: center;
    gap: var(--gs-space-3);
    font-size: var(--gs-text-base);
    font-weight: 500;
    color: var(--gs-gray-700);
}

.gs-why-us__icon {
    width: 24px;
    height: 24px;
    color: var(--gs-gray-900);
    flex-shrink: 0;
}

.gs-why-us__image {
    border-radius: var(--gs-radius-2xl);
    overflow: hidden;
    box-shadow: var(--gs-shadow-xl);
}

.gs-why-us__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.gs-projects {
    background: var(--gs-gray-50);
}

.gs-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gs-space-4);
}

@media (min-width: 768px) {
    .gs-projects__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gs-space-6);
    }
}

.gs-project-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--gs-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gs-project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--gs-transition-slow);
}

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

.gs-project-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--gs-space-4);
    opacity: 0;
    transition: opacity var(--gs-transition);
}

.gs-project-item:hover .gs-project-item__overlay {
    opacity: 1;
}

.gs-project-item__caption {
    font-size: var(--gs-text-sm);
    font-weight: 500;
    color: var(--gs-white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.gs-testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gs-space-8);
}

@media (min-width: 768px) {
    .gs-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gs-testimonial {
    background: var(--gs-gray-50);
    border-radius: var(--gs-radius-xl);
    padding: var(--gs-space-8);
}

.gs-testimonial__stars {
    color: #fbbf24;
    font-size: var(--gs-text-lg);
    margin-bottom: var(--gs-space-4);
    letter-spacing: 0.1em;
}

.gs-testimonial__text {
    font-size: var(--gs-text-base);
    color: var(--gs-gray-700);
    font-style: italic;
    margin-bottom: var(--gs-space-6);
    line-height: 1.7;
}

.gs-testimonial__author strong {
    display: block;
    font-size: var(--gs-text-sm);
    font-weight: 600;
    color: var(--gs-gray-900);
    font-style: normal;
}

.gs-testimonial__author span {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-500);
    font-style: normal;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.gs-faq {
    background: var(--gs-white);
}

.gs-faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--gs-gray-200);
}

.gs-faq__item {
    border-bottom: 1px solid var(--gs-gray-200);
}

.gs-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--gs-space-5) 0;
    font-size: var(--gs-text-base);
    font-weight: 500;
    color: var(--gs-gray-900);
    cursor: pointer;
    list-style: none;
    transition: color var(--gs-transition-fast);
}

.gs-faq__question::-webkit-details-marker {
    display: none;
}

.gs-faq__question::after {
    content: '';
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform var(--gs-transition-fast);
}

.gs-faq__item[open] .gs-faq__question::after {
    transform: rotate(180deg);
}

.gs-faq__question:hover {
    color: var(--gs-gray-600);
}

.gs-faq__answer {
    padding-bottom: var(--gs-space-5);
}

.gs-faq__answer p {
    font-size: var(--gs-text-base);
    color: var(--gs-gray-600);
    line-height: 1.7;
}

.gs-faq__cta {
    text-align: center;
    margin-top: var(--gs-space-12);
}

.gs-faq__cta p {
    font-size: var(--gs-text-base);
    color: var(--gs-gray-500);
    margin-bottom: var(--gs-space-4);
}

/* ============================================
   CTA SECTION
   ============================================ */
.gs-cta {
    background: var(--gs-gray-900);
    color: var(--gs-white);
}

.gs-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.gs-cta__title {
    font-family: var(--gs-font-display);
    font-size: var(--gs-text-3xl);
    font-weight: 700;
    margin-bottom: var(--gs-space-4);
}

.gs-cta__text {
    font-size: var(--gs-text-lg);
    color: var(--gs-gray-300);
    margin-bottom: var(--gs-space-8);
}

.gs-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gs-space-4);
}

.gs-cta .gs-btn--primary {
    background: var(--gs-white);
    color: var(--gs-gray-900);
}

.gs-cta .gs-btn--primary:hover {
    background: var(--gs-gray-100);
}

.gs-cta .gs-btn--secondary {
    background: transparent;
    color: var(--gs-white);
    border-color: var(--gs-gray-600);
}

.gs-cta .gs-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gs-white);
}

/* ============================================
   FOOTER
   ============================================ */
.gs-footer {
    background: var(--gs-gray-900);
    color: var(--gs-gray-300);
}

.gs-footer__main {
    padding: var(--gs-space-16) 0;
}

.gs-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gs-space-10);
}

@media (min-width: 768px) {
    .gs-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gs-footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--gs-space-12);
    }
}

.gs-footer__logo {
    display: inline-block;
    margin-bottom: var(--gs-space-4);
}

.gs-footer__logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.gs-footer__tagline {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-400);
    margin-bottom: var(--gs-space-6);
    max-width: 280px;
}

.gs-footer__social {
    display: flex;
    gap: var(--gs-space-4);
}

.gs-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gs-gray-800);
    color: var(--gs-gray-400);
    transition: all var(--gs-transition-fast);
}

.gs-footer__social a:hover {
    background: var(--gs-white);
    color: var(--gs-gray-900);
}

.gs-footer__heading {
    font-size: var(--gs-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gs-white);
    margin-bottom: var(--gs-space-6);
}

.gs-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--gs-space-3);
}

.gs-footer__list a {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-400);
    transition: color var(--gs-transition-fast);
}

.gs-footer__list a:hover {
    color: var(--gs-white);
}

.gs-footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--gs-space-4);
}

.gs-footer__address p {
    display: flex;
    align-items: flex-start;
    gap: var(--gs-space-3);
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-400);
}

.gs-footer__address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gs-gray-500);
}

.gs-footer__address a {
    color: var(--gs-gray-400);
    transition: color var(--gs-transition-fast);
}

.gs-footer__address a:hover {
    color: var(--gs-white);
}

.gs-footer__bottom {
    border-top: 1px solid var(--gs-gray-800);
    padding: var(--gs-space-6) 0;
}

.gs-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: var(--gs-space-4);
    text-align: center;
}

@media (min-width: 768px) {
    .gs-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.gs-footer__copyright {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-500);
}

.gs-footer__legal {
    display: flex;
    gap: var(--gs-space-6);
}

.gs-footer__legal a {
    font-size: var(--gs-text-sm);
    color: var(--gs-gray-500);
    transition: color var(--gs-transition-fast);
}

.gs-footer__legal a:hover {
    color: var(--gs-white);
}

/* ============================================
   UTILITY: SCREEN READER ONLY
   ============================================ */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    background: var(--gs-white);
    clip: auto;
    height: auto;
    padding: var(--gs-space-4);
    position: fixed;
    top: var(--gs-space-2);
    left: var(--gs-space-2);
    width: auto;
    z-index: 9999;
}

/* ============================================
   QUICK FIXES - v2.0.1
   ============================================ */

/* Fix hero background positioning */
.gs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #171717;
}

.gs-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gs-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.gs-hero__content {
    position: relative;
    z-index: 2;
}

/* Fix header navigation visibility at desktop */
@media (min-width: 1024px) {
    .gs-header__toggle {
        display: none !important;
    }
    
    .gs-header__nav {
        display: block !important;
    }
    
    .gs-header__cta {
        display: block !important;
    }
}

/* Service card images */
.gs-service-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #e5e5e5;
}

.gs-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project grid images */
.gs-project-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #e5e5e5;
}

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

/* Why us image */
.gs-why-us__image {
    overflow: hidden;
    border-radius: 24px;
}

.gs-why-us__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
