/* style.css - Sony Interiors */

:root {
    /* Color Palette - Premium Light Theme */
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F8F5;
    --accent-gold: #C29A30; /* Refined luxury gold for light background legibility */
    --accent-gold-hover: #A07C1C;
    --text-light: #1E1E1C; /* Dark charcoal text for primary readability */
    --text-muted: #666663; /* Readable gray for descriptions */
    --beige: #A8862C; /* Gold-toned beige for highlights */
    --card-bg: rgba(194, 154, 48, 0.04); /* Translucent golden-tint card background */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #000000;
}

.section-title {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    color: #000000;
}

/* Override utility in light theme */
.text-white {
    color: #000000 !important;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #b8962e);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b8962e, var(--accent-gold));
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.w-100 {
    width: 100%;
}

/* Top Scrolling Offers Ticker */
.top-offers-banner {
        background: #090ee1;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(194, 154, 48, 0.25);
    letter-spacing: 0.5px;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.ticker-item {
    display: inline-block;
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 36px; /* below the top scrolling ticker banner */
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: top var(--transition-fast), padding var(--transition-fast), background var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    top: 0; /* slide up to the very top on scroll */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled .logo {
    color: #000000;
}

.navbar.scrolled .logo-img {
    height: 48px;
    border-color: rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .nav-links a {
    color: var(--text-light);
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--text-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.logo-text {
    display: inline-block;
}

.nav-links a {
    color: #fff;
    margin: 0 15px;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-slow);
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-light);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       background: linear-gradient(180deg, rgb(13 13 13 / 32%) 0%, rgba(13, 13, 13, 0.45) 40%, rgba(13, 13, 13, 0.55) 75%, #0d0d0d57 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-container-overlay {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 900px;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.headline {
    font-size: 5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 48px;
    color: #F5F5DC;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* Common Section Styles */
section {
    padding: 50px 0;
}

.services, .why-us, .gallery, .testimonials, .contact {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section-dark {
    background-color: var(--secondary-bg);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* About Section */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-gold);
    color: #fff;
    padding: 30px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.about-features i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(194, 154, 48, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(194, 154, 48, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Why Choose Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--secondary-bg);
    padding: 25px;
    border-radius: 15px;
    border-left: 3px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(194, 154, 48, 0.08);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.feature-item h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
}

/* Gallery Section */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0 35px 0; /* extra padding for scrollbar */
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(0, 0, 0, 0.05);
}

.testimonial-slider::-webkit-scrollbar {
    height: 4px;
    display: block;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.testimonial-card {
    min-width: 350px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    scroll-snap-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(194, 154, 48, 0.05);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.review {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.client-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-role {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* Contact & Enquiry */
.info-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 5px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: var(--text-muted);
}

.info-item a:hover {
    color: var(--accent-gold);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 30px;
}

.premium-form {
    background: var(--secondary-bg);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(194, 154, 48, 0.08);
}

.premium-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    background: var(--primary-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(194, 154, 48, 0.15);
}

/* Floating Elements */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background: var(--secondary-bg);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Fixed Footer */
.mobile-fixed-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 9999;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.m-btn {
    flex: 1;
    margin: 0 4px;
    text-align: center;
    color: #fff !important;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.m-btn i {
    font-size: 17px;
    margin-bottom: 4px;
}

.btn-wa { background: linear-gradient(135deg, #25d366, #1ebe5c); }
.btn-call { background: linear-gradient(135deg, var(--accent-gold), #A07C1C); }
.btn-quote { background: linear-gradient(135deg, #1E1E1C, #000000); }
.btn-chat { background: linear-gradient(135deg, var(--accent-gold), #A07C1C); }

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

/* WhatsApp Interactive Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-width: 90%;
    z-index: 99999;
    display: none;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-body);
}

.whatsapp-popup-header {
    background: linear-gradient(135deg, #C29A30, #A07C1C);
    color: #ffffff;
    padding: 14px 18px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-popup-body {
    padding: 20px 18px;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
}

.whatsapp-popup-body p {
    margin: 0 0 15px 0;
    color: #666663;
}

.whatsapp-popup-body button {
    background: linear-gradient(135deg, #25d366, #1ebe5c);
    border: none;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.whatsapp-popup-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-close {
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

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

/* Animations - Initial State */
.reveal {
    opacity: 0;
    visibility: hidden;
}

/* Section Light Theme */
.section-light {
    background-color: var(--primary-bg);
    color: var(--text-light);
}
.section-light .section-title {
    color: var(--accent-gold);
}
.section-light .section-subtitle {
    color: var(--accent-gold);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.8);
    transition: transform var(--transition-fast);
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.close-lightbox {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 3rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .headline { font-size: 3.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 40px; }
    .experience-badge { bottom: 20px; right: 20px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }
    .mobile-menu-toggle { display: block; }
    .logo-text { font-size: 1.35rem; }
    .logo-img { height: 46px; }
    
    .headline { font-size: 2.0rem; line-height: 1.0; }
    .subheadline { font-size: 1.1rem; margin-bottom: 32px; letter-spacing: 1px; }
    .hero-buttons { flex-direction: column; gap: 15px; align-items: center; width: 100%; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
    .hero { text-align: center; }
    .hero-content { text-align: center; }
    
    .gallery-item:nth-child(4) { grid-column: span 1; }
    
    /* Enable Mobile Fixed Footer */
    .mobile-fixed-footer { display: flex; gap: 10px; }
    .floating-wa { display: none; } /* Hide floating WA on mobile to avoid clutter */
    
    body { padding-bottom: 70px; } /* Space for mobile footer */
}
