/* ===== CSS Variables ===== */
:root {
    --primary-gold: #c9a227;
    --primary-dark: #1a1f2e;
    --secondary-dark: #0f1219;
    --green-dark: #1a3a2f;
    --green-light: #2d5a47;
    --blue-dark: #1a2a4a;
    --blue-light: #2a4a7a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --text-dark: #333333;
    --text-light: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-card-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 24px;
}

.btn-card-primary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-card-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--white);
    padding: 10px 24px;
}

.btn-card-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact a {
    color: var(--text-light);
}

.top-contact a:hover {
    color: var(--primary-gold);
}

.top-contact i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.top-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-links > a {
    color: var(--text-light);
}

.top-links > a:hover {
    color: var(--primary-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

/* ===== Header ===== */
.header {
    background: rgba(26, 31, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li > a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover {
    color: var(--primary-gold);
}

.nav-menu > li > a i {
    font-size: 10px;
    transition: var(--transition);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--text-dark);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--gray-light);
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}


/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.85) 0%, rgba(26, 42, 74, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 .gold {
    color: var(--primary-gold);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Services Cards Section ===== */
.services-cards {
    padding: 80px 0;
    background: var(--gray-light);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 15px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.green-card {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
}

.blue-card {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 100%);
}

.card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 60px 60px;
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.card-content p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 350px;
}

.card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Section Styles ===== */
.section-badge {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: var(--text-light);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-features li i {
    color: var(--primary-gold);
    font-size: 18px;
}

/* ===== Products Section ===== */
.products-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-dark);
    padding: 20px 20px 10px;
}

.product-card p {
    color: var(--gray);
    font-size: 14px;
    padding: 0 20px 25px;
}


/* ===== Renovations Section ===== */
.renovations-section {
    padding: 100px 0;
}

.renovations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.renovation-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.renovation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.renovation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e0b82a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.renovation-icon i {
    font-size: 32px;
    color: var(--white);
}

.renovation-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.renovation-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.renovation-card .btn-outline {
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

.renovation-card .btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* ===== Why Us Section ===== */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary-gold);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-gold);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-light) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-dark);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.8;
}

.footer-brand .social-icons {
    margin-top: 20px;
}

.footer-brand .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .social-icons a:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul {
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--primary-gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact ul li a {
    color: var(--text-light);
}

.footer-contact ul li a:hover {
    color: var(--primary-gold);
}

.footer-contact .btn {
    margin-top: 15px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--blue-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
    background-size: 60px 60px;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.breadcrumb a {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: var(--text-light);
}

/* ===== Product Detail Page ===== */
.product-detail {
    padding: 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.product-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    margin: 30px 0;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 10px;
}

.product-features h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.product-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-features ul li i {
    color: var(--primary-gold);
}

/* ===== Gallery Grid ===== */
.gallery-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 46, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--primary-dark);
    padding: 50px;
    border-radius: 15px;
    color: var(--white);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }
    
    .about-img-secondary img {
        height: 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .renovations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.05);
        border-radius: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu li a {
        color: var(--text-light);
        padding: 12px 20px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-contact {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .services-cards {
        margin-top: -50px;
        padding: 50px 0;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .card-content h2 {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-content h2 {
        font-size: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .renovations-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .card-buttons {
        flex-direction: column;
    }
    
    .card-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold);
}

.mb-0 {
    margin-bottom: 0;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


/* ===== Video Slider Hero ===== */
.hero-slider {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.video-slider .slide.active {
    opacity: 1;
}

.video-slider .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.8) 0%, rgba(26, 42, 74, 0.7) 100%);
    z-index: -1;
}

.hero-slider .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.hero-slider .hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-slider h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slider h1 .gold {
    color: var(--primary-gold);
}

.hero-slider p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slider .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.slider-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.slider-progress .progress-bar {
    height: 100%;
    background: var(--primary-gold);
    width: 0%;
    transition: width 0.1s linear;
}

/* Product Card as Link */
a.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.product-card:hover {
    transform: translateY(-10px);
}

/* Renovation Card as Link */
a.renovation-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.renovation-card:hover {
    transform: translateY(-10px);
}

/* Responsive Video Slider */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 80vh;
    }
    
    .hero-slider h1 {
        font-size: 32px;
    }
    
    .hero-slider p {
        font-size: 16px;
    }
    
    .slider-controls {
        bottom: 60px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider h1 {
        font-size: 28px;
    }
    
    .slider-controls {
        bottom: 50px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
}


/* ===== Vertical Video Gallery ===== */
.video-gallery-section {
    padding: 100px 0;
    background: var(--secondary-dark);
}

.video-gallery-section .section-header h2 {
    color: var(--white);
}

.video-gallery-section .section-header p {
    color: var(--text-light);
}

.vertical-video-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.vertical-video-item {
    position: relative;
    width: 220px;
    height: 390px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.vertical-video-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vertical-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.vertical-video-item:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay i {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.vertical-video-item:hover .video-play-overlay i {
    transform: scale(1.1);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 20px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

/* Responsive Video Gallery */
@media (max-width: 1200px) {
    .vertical-video-item {
        width: 200px;
        height: 355px;
    }
}

@media (max-width: 992px) {
    .vertical-video-grid {
        gap: 15px;
    }
    
    .vertical-video-item {
        width: 180px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .video-gallery-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .vertical-video-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .vertical-video-grid::-webkit-scrollbar {
        display: none;
    }
    
    .vertical-video-item {
        flex-shrink: 0;
        width: 160px;
        height: 285px;
    }
    
    .video-modal-content {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .video-gallery-section {
        padding: 40px 0;
    }
    
    .vertical-video-item {
        width: 140px;
        height: 250px;
    }
    
    .video-play-overlay i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* ===== Logo Image ===== */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo-img {
    height: 60px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-video {
    position: relative;
    height: 300px;
    cursor: pointer;
    overflow: hidden;
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-video .video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.testimonial-video:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.testimonial-video .video-play-overlay i {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    transition: var(--transition);
}

.testimonial-video:hover .video-play-overlay i {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-content .stars {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.testimonial-content .stars i {
    margin-right: 3px;
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
        overflow: hidden;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
    
    .testimonial-video {
        height: 220px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-video {
        height: 200px;
    }
    
    .testimonial-video .video-play-overlay i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-content {
        padding: 15px;
    }
}

/* Global overflow fix for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        overflow: hidden;
    }
}


/* ===== Our Works Section ===== */
.our-works-section {
    padding: 100px 0;
    background: var(--white);
}

.our-works-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.work-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-item:hover img {
    transform: scale(1.1);
}

.work-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 46, 0.4);
    opacity: 0;
    transition: var(--transition);
}

.work-item:hover::after {
    opacity: 1;
}

@media (max-width: 1200px) {
    .our-works-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .our-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .our-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== Our Works Lightbox ===== */
.works-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.works-lightbox.active {
    display: flex;
}

.works-lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-lightbox-media {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.works-lightbox-media img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.works-lightbox-media video {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.works-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.works-lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: rotate(90deg);
}

.works-lightbox-prev,
.works-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.works-lightbox-prev {
    left: 20px;
}

.works-lightbox-next {
    right: 20px;
}

.works-lightbox-prev:hover,
.works-lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-50%) scale(1.1);
}

.works-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

/* Work Item Video Play Icon */
.work-item {
    cursor: pointer;
    position: relative;
}

.work-item .work-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.work-item:hover .work-play-icon {
    opacity: 1;
}

.work-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .works-lightbox-content {
        width: 95%;
        height: 95%;
    }
    
    .works-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .works-lightbox-prev,
    .works-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .works-lightbox-prev {
        left: 10px;
    }
    
    .works-lightbox-next {
        right: 10px;
    }
    
    .works-lightbox-counter {
        bottom: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .works-lightbox-media img,
    .works-lightbox-media video {
        max-height: 80vh;
    }
}
