/* CSS Reset & Variables */
:root {
    --primary-color: #bfa15f;
    /* Golden/Brass color */
    --primary-dark: #9e8248;
    --text-dark: #222222;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;

    --font-heading: 'Noto Serif', serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--primary-color);
    color: white;
}

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

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 6rem 0;
}

.section-reverse {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

.section-reverse > div {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 992px) {
    .section-reverse {
        flex-direction: column;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 1px solid var(--primary-color);
}

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

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

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

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

.btn-outline:hover {
    color: white;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white::before {
    background-color: white;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header.menu-open {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom-color: transparent;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 55px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list li a {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary-color);
}

.nav-list li a.active::after,
.nav-list li a:hover:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
}

.nav-list li a.nav-cta {
    background-color: var(--text-dark);
    color: white;
    padding: 0.6rem 1.4rem;
    margin-left: 0.5rem;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.nav-list li a.nav-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(191, 161, 95, 0.05);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 4px;
    vertical-align: middle;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1000;
}

.mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle .bar:nth-child(1) { top: 0; }
.mobile-toggle .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle .bar:nth-child(3) { top: 100%; transform: translateY(-100%); }

.mobile-toggle.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    z-index: 10;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: heroBgZoom 10s ease-out forwards;
}

@keyframes heroBgZoom {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-main-logo {
    width: clamp(150px, 25vw, 300px);
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(40px, 12vw, 120px);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 0.9;
}

.hero .subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    font-size: clamp(12px, 3.5vw, 35px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2.5rem;
    margin-top: 0px;
}

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

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    opacity: 0.8;
    transition: var(--transition);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-down-arrow:hover {
    opacity: 1;
    color: var(--primary-color);
}

@keyframes bounce {

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

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

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

/* Services */
.services {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

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

.card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
    height: 240px;
    overflow: hidden;
}

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

.card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

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

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Showcase */
.showcase {
    padding: 6rem 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.carousel-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(191, 161, 95, 0.3);
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.carousel-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 450px;
}

.carousel-item {
    position: absolute;
    transition: all 0.5s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 10px;
}

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

.carousel-item.active {
    width: 400px;
    height: 450px;
    z-index: 3;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.carousel-item.left {
    width: 300px;
    height: 350px;
    z-index: 2;
    opacity: 0.7;
    transform: translateX(-60%) rotate(-5deg);
}

.carousel-item.right {
    width: 300px;
    height: 350px;
    z-index: 2;
    opacity: 0.7;
    transform: translateX(60%) rotate(5deg);
}

.carousel-item.hidden {
    width: 300px;
    height: 350px;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text .about-lead {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.about-text .about-lead strong {
    color: var(--primary-color);
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.about-features {
    flex: 1.5;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}
/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-header {
    margin-bottom: 3.5rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.contact-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: none;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: 4px;
    background-color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 2px solid #eaeaea;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 1.2rem 3rem;
    font-size: 0.95rem;
    background-color: var(--text-dark);
    color: white;
    transition: var(--transition);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form .btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    margin-top: auto;
}

.btn-more:hover {
    gap: 12px;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 4rem 0 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 220px;
    height: auto;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #0a0a0a;
    text-align: center;
    padding: 1.5rem 0;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #777;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

.footer-col .btn-primary {
    color: var(--text-dark);
}

.footer-col .btn-primary:hover {
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .carousel-gallery {
        max-width: 100%;
        height: 350px;
    }

    .carousel-item.active {
        width: 300px;
        height: 350px;
    }

    .carousel-item.left {
        transform: translateX(-40%) rotate(-5deg);
    }

    .carousel-item.right {
        transform: translateX(40%) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .nav {
        visibility: hidden;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1.5rem 0;
    }

    .nav::before {
        content: '';
        position: absolute;
        top: -70px;
        left: 0;
        width: 100%;
        height: calc(100% + 70px);
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid var(--primary-color);
        z-index: -1;
    }
    
    .nav.active {
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-list li {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        text-align: center;
    }

    .nav.active .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav.active .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .nav.active .nav-list li:nth-child(2) { transition-delay: 0.10s; }
    .nav.active .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .nav.active .nav-list li:nth-child(4) { transition-delay: 0.20s; }
    .nav.active .nav-list li:nth-child(5) { transition-delay: 0.25s; }
    .nav.active .nav-list li:nth-child(6) { transition-delay: 0.30s; }
    .nav.active .nav-list li:nth-child(7) { transition-delay: 0.35s; }
    .nav.active .nav-list li:nth-child(8) { transition-delay: 0.40s; }
    
    .nav-list li a.nav-cta {
        margin-left: 0;
        margin-top: 1rem;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        background: transparent;
        padding-top: 10px;
        padding-bottom: 0;
        min-width: 100%;
        text-align: center;
    }
    
    .dropdown-menu.open {
        display: block;
    }

    .nav-list .dropdown-menu li {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        margin-bottom: 5px;
    }
    
    .dropdown-menu li a {
        padding: 8px 0;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .carousel-gallery {
        height: 300px;
    }

    .carousel-item.active {
        width: 250px;
        height: 300px;
    }

    .carousel-item.left,
    .carousel-item.right {
        display: none;
        /* Simplified carousel for mobile */
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-col p {
        justify-content: center;
    }
}

/* Subpage Hero */
.sub-hero {
    position: relative;
    padding: 10rem 0 6rem;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    overflow: hidden;
}

.sub-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image, url('img/hero_sub.jpg'));
    background-size: cover;
    background-position: var(--bg-position, center);
    z-index: 0;
    animation: heroBgZoom 10s ease-out forwards;
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.sub-hero .container {
    position: relative;
    z-index: 2;
}

.sub-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: var(--font-heading);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    margin-top: auto;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.price-note {
    font-size: 0.8rem;
    color: #999;
    font-weight: normal;
    font-family: var(--font-body);
}

/* Info Boxes and Icons */
.service-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: #fcfcfc;
    border: 1px solid #eee;
}

.step-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-item span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.acc-item {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.acc-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.acc-price {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .sub-hero {
        height: 40vh;
    }
}

/* 404 Not Found Page Light Premium */
.not-found-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 70px;
    background: radial-gradient(circle at 50% -20%, #ffffff 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.not-found-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CiAgPHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0wIDEwaDQwdjFIMHoiIGZpbGw9InJnYmEoMTkxLCAxNjEsIDk1LCAwLjAzKSIvPgogIDxwYXRoIGQ9Ik0xMCAwaDF2NDBIMTB6IiBmaWxsPSJyZ2JhKDE5MSLCAxNjEsIDk1LCAwLjAzKSIvPgo8L3N2Zz4=');
    pointer-events: none;
    z-index: 0;
}

.not-found-content {
    background: #ffffff;
    border: 1px solid rgba(191, 161, 95, 0.15);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.not-found-content h1 {
    font-size: clamp(7rem, 18vw, 14rem);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d8c28f 50%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(191, 161, 95, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.not-found-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.not-found-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

.not-found-content .btn {
    box-shadow: 0 10px 20px rgba(191, 161, 95, 0.15);
    border-radius: 4px;
    padding: 14px 35px;
}

.not-found-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(191, 161, 95, 0.3);
}

@media (max-width: 576px) {
    .not-found-content {
        padding: 3rem 1.5rem;
        margin: 0 20px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 4px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
    z-index: 2001;
}

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