@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --color-bg: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-light: #2a2a2a;
    --color-primary: #D4AF37; /* Gold */
    --color-primary-hover: #b5952f;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* Typography */
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--color-primary);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section-padding {
    padding: 3rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg);
}
.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero-subtitle {
    color: var(--color-primary);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Feature/About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}
.about-img:hover img {
    transform: scale(1.05);
}
.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    z-index: -1;
    transition: var(--transition);
}
.about-img:hover::after {
    top: 10px;
    left: 10px;
}
.about-text p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-item h3 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}
.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background-color: var(--color-surface);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.service-img {
    /* height: 200px; */
    overflow: hidden;
}
.service-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}
.service-content {
    padding: 2rem;
}
.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.service-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h3 {
    color: var(--color-primary);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--color-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--color-text-muted);
}
.footer-links a:hover {
    color: var(--color-primary);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border-radius: 50%;
    color: var(--color-text);
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Lightbox for Gallery */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

/* Hero Slider */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    transform: scale(1.05);
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.17) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}
.home-hero .hero-content {
    z-index: 3;
}
.home-hero::before {
    display: none; /* Disable default gradient for home slider */
}
.lightbox-close:hover {
    color: var(--color-primary);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--color-surface);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-item {
    background-color: var(--color-bg);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--color-primary);
    transition: height 0.4s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(212,175,55,0.3);
}
.feature-item:hover::before {
    height: 100%;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    background: rgba(212,175,55,0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-item:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
}
.feature-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.feature-text p {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
    line-height: 1.5;
}

/* Our Works Section */
.our-works-section {
    background-color: var(--color-bg);
}
.our-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.our-works-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}
.our-works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.our-works-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.15) rotate(3deg);
}
.our-works-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,175,55,0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    transition: all 0.4s ease;
}
.our-works-item:hover .our-works-overlay {
    opacity: 1;
}
.our-works-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.our-works-item:hover .our-works-overlay i {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .our-works-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .our-works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .our-works-grid { grid-template-columns: 1fr; }
}

/* Testimonials Slider */
.testimonials-section {
    position: relative;
}
.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}
.testimonial-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--color-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 15px 40px rgba(212,175,55,0.15);
}
.quote-icon {
    font-size: 2.5rem;
    color: rgba(212,175,55,0.2);
    margin-bottom: 1.5rem;
    transition: transform 0.6s ease, color 0.4s ease;
}
.testimonial-card:hover .quote-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--color-primary);
}
.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
}
.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}
.client-info span {
    font-size: 0.85rem;
    color: var(--color-primary);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .testimonial-card { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 600px) {
    .testimonial-card { flex: 0 0 calc(100% - 20px); }
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.whatsapp-btn {
    background-color: #25d366;
}
.call-btn {
    background-color: #007bff;
}
.float-btn:hover {
    transform: scale(1.1) rotate(5deg);
}
.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}
.whatsapp-btn::before {
    border: 2px solid #25d366;
    background-color: rgba(37, 211, 102, 0.4);
}
.call-btn::before {
    border: 2px solid #007bff;
    background-color: rgba(0, 123, 255, 0.4);
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Mobile Nav Logo */
.mobile-nav-logo { display: none; }
.mobile-nav-close { display: none; }
@media (max-width: 768px) {
    .mobile-nav-logo {
        display: block;
        margin: -1rem auto 2rem auto;
        height: 45px;
    }
    .mobile-nav-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 25px;
        font-size: 2.5rem;
        color: #fff;
        cursor: pointer;
        line-height: 1;
        z-index: 1000;
    }
}
