/* 
   UGRAM™ - Premium Architectural Surfaces
   Theme: Minimalist, Architectural, Premium
   Colors: Charcoal Grey, White Cement, Gold Accents
*/

:root {
    /* Color Palette */
    --primary-dark: #1a1a1a;
    --primary-light: #f5f5f5;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b08d45;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --concrete-grey: #e0e0e0;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --border-radius: 4px;
    /* Architectural sharp/soft mix */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body), sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-md-6,
.col-md-5,
.col-md-7 {
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66%;
    }

    .col-md-7 {
        width: 58.33%;
    }
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.w-100 {
    width: 100%;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    border-radius: 2px;
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding: 0;
    padding-bottom: 2px;
}

.btn-text:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

.trademark {
    font-size: 0.8rem;
    vertical-align: super;
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 5px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.btn-gold::after {
    display: none;
}

.nav-link.btn-gold {
    padding: 10px 24px;
    color: var(--white);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.5s ease-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: -1;
}

.hero-container {
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-labels {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-labels .badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    color: var(--accent-gold);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.hero h1 span {
    color: var(--accent-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
}

.hero-benefits-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-tag {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.benefit-tag span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 0.2rem;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-indicator .label {
    font-size: 0.65rem;
    letter-spacing: 4px;
}

.scroll-indicator .mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, 5px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* About Section */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.image-stack::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    background-color: var(--primary-light);
    z-index: -1;
}

.image-stack .main-img {
    width: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.floating-badge .title {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.floating-badge .subtitle {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.about-content .section-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-content .section-lead {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.numbered-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-box {
    display: flex;
    gap: 1.5rem;
}

.feature-box .num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.4;
    font-family: var(--font-heading);
    padding-top: 5px;
}

.feature-box .txt h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-box .txt p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .hero-benefits-grid {
        gap: 1.5rem;
    }
}


/* Collection Section */
.collection-section {
    background-color: #f9f9f9;
}

/* Filter Styles */
.filter-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid var(--concrete-grey);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.filter-groups {
    display: flex;
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid var(--concrete-grey);
    border-radius: 4px;
    background-color: var(--white);
    font-family: var(--font-body);
    min-width: 180px;
    cursor: pointer;
}

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

/* Product Card */
.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.card-image {
    height: 300px;
    background-color: #eee;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.card-specs {
    margin: 1rem 0;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.spec-item span:first-child {
    font-weight: 500;
    color: var(--primary-dark);
}

.card-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.7rem;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--text-muted);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.card-overlay span {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border: 1px solid var(--white);
    padding: 10px 20px;
}

.card-image:hover .card-overlay {
    opacity: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.card-footer .btn-text {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.colour-swatches {
    display: flex;
    gap: 8px;
    margin: 0.75rem 0;
    padding: 0.5rem 0;
}

.colour-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.colour-dot:hover {
    transform: scale(1.15);
}

.colour-dot.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3);
}

/* Spaces Transformed Section */
.spaces-section {
    background-color: var(--white);
    padding: 8rem 0;
}

.spaces-header {
    margin-bottom: 4rem;
}

.spaces-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.spaces-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.spaces-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}

.space-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.space-card--large {
    grid-row: span 2;
}

.space-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.15, 0.45, 0.29, 0.94);
}

.space-card:hover .space-card__bg {
    transform: scale(1.1);
}

.space-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
    opacity: 0.8;
}

.space-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: var(--white);
}

.space-card__number {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.space-card__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 500;
}

.space-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.space-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .spaces-title {
        font-size: 2.8rem;
    }

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

    .space-card {
        height: 400px;
    }

    .space-card--large {
        grid-row: auto;
    }
}

/* Professional Atelier Section */
.professional-atelier {
    background-color: var(--primary-light);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle architectural grid background */
.professional-atelier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.atelier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
}

.atelier-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.atelier-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.atelier-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.atelier-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.atelier-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blueprint-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blueprint-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-gold);
}

.blueprint-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bp-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}

.blueprint-header h4 {
    font-size: 1.3rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blueprint-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.bp-specs {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
    list-style: none;
}

.bp-specs li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bp-specs li span {
    color: var(--text-muted);
    font-weight: 500;
}

.atelier-stats {
    display: flex;
    justify-content: center;
    gap: 8rem;
    padding-top: 5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.atelier-stat {
    text-align: center;
}

.stat-val {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.stat-unit {
    font-size: 2rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-left: 5px;
}

.stat-desc {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .atelier-content {
        grid-template-columns: 1fr;
    }

    .atelier-stats {
        gap: 3rem;
        flex-direction: column;
        align-items: center;
    }

    .atelier-title {
        font-size: 2.5rem;
    }
}


/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--primary-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid transparent;
    background-color: var(--white);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* Footer */
.footer {
    background-color: #111;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.company-name {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--accent-gold);
}

/* Response */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

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

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-groups {
        flex-direction: column;
    }

    .experience-badge {
        bottom: 10px;
        left: 10px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-gold);
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image {
    width: 50%;
    background-color: #f0f0f0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-sm {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.modal-details h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1.5rem;
    color: var(--primary-dark);
}

.modal-specs {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--concrete-grey);
}

.spec-row {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 10px;
}

.spec-row strong {
    min-width: 100px;
    color: var(--primary-dark);
}

.modal-colours {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--concrete-grey);
}

.modal-colours strong {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.modal-colour-dots {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
        width: 95%;
    }

    .modal-body {
        flex-direction: column;
    }

    .modal-image,
    .modal-details {
        width: 100%;
    }

    .modal-image {
        height: 250px;
    }

    .modal-details {
        padding: 1.5rem;
    }
}

/* Floating Contact Widgets */
.floating-contact {
    position: fixed;
    bottom: 100px;
    /* Above scroll top button */
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.whatsapp-float {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-float {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: var(--white);
    animation: none;
    /* Stop pulse on hover */
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

.call-float:hover {
    background-color: var(--accent-gold);
}

.float-tooltip {
    position: absolute;
    right: 75px;
    /* Appear on the left of the button */
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 90px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .float-tooltip {
        display: none;
    }
}