:root {
    /* Colors */
    --primary: #0084ff;
    /* Vibrant Blue from the new logo */
    --primary-light: #66b2ff;
    --secondary: #0a0a09;
    /* Deep Obsidian */
    --surface: #141414;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #0084ff;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
    --border-radius: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 45px;
}

.logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--section-padding);
    background: radial-gradient(circle at top right, rgba(242, 201, 76, 0.05), transparent);
}

/* Geometric Pattern Background Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f2c94c' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-2.21 0-4 1.79-4 4s1.79 4 4 4c2.21 0 4-1.79 4-4zm2 0c0 3.314-2.686 6-6 6s-6-2.686-6-6 2.686-6 6-6 6 2.686 6 6zm25.5 10c0-2.21-1.79-4-4-4-2.21 0-4 1.79-4 4s1.79 4 4 4c2.21 0 4-1.79 4-4zm2 0c0 3.314-2.686 6-6 6s-6-2.686-6-6 2.686-6 6-6 6 2.686 6 6zM10 25c0-2.21-1.79-4-4-4-2.21 0-4 1.79-4 4s1.79 4 4 4c2.21 0 4-1.79 4-4zm2 0c0 3.314-2.686 6-6 6s-6-2.686-6-6 2.686-6 6-6 6 2.686 6 6zm25.5-25c0-2.21-1.79-4-4-4-2.21 0-4 1.79-4 4s1.79 4 4 4c2.21 0 4-1.79 4-4zm2 0c0 3.314-2.686 6-6 6s-6-2.686-6-6 2.686-6 6-6 6 2.686 6 6z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, white 60%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image .img-wrapper {
    width: 90%;
    aspect-ratio: 4/3;
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.hero-image .img-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Verification Section (Phone Numbers) */
.verification {
    padding: var(--section-padding);
    background: var(--surface);
    position: relative;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.number-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.number-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(242, 201, 76, 0.05);
}

.number-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.number-card .phone {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.number-card .tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Details Section */
.details {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.address-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.address-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.address-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list li.today {
    color: var(--primary);
    font-weight: 700;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 500px;
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(242, 201, 76, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Maps Section */
.map-container {
    height: 500px;
    width: 100%;
    filter: invert(90%) hue-rotate(180deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate {
    animation: fadeInUp 1s forwards;
    opacity: 0;
}

/* Materials Section (Plywood & Veneers) */
.materials-section {
    padding: var(--section-padding);
    background: var(--secondary);
}

.materials-header {
    margin-bottom: 80px;
}

.materials-header h2 {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary), white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.material-item {
    background: #0a0a0a;
    padding: 80px 40px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
}

.material-item:hover {
    border-color: var(--primary);
    background: #111;
}

.material-item h3 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    z-index: 2;
    letter-spacing: -2px;
}

.material-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.material-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
    transition: var(--transition);
}

.material-item:hover .material-texture {
    opacity: 0.3;
}

.plywood-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1610557892470-55d9e80c0bce?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
}

.veneer-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
}

.ui-0-tag {
    position: absolute;
    top: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    transform: rotate(90deg);
    transform-origin: right top;
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .material-item h3 {
        font-size: 2rem;
    }
}

/* Responsive */

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        width: 100%;
        margin-top: 50px;
    }

    .details {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .gallery-item {
        height: 300px;
    }
}