/* =============================================
   SASTHA LAMINATION - MAIN STYLESHEET
   Premium Industrial Design | Yellow/Black/White
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --yellow: #F5C518;
    --yellow-dark: #E0AE00;
    --yellow-light: #FFF3B0;
    --black: #0D0D0D;
    --black-soft: #1A1A1A;
    --black-mid: #2A2A2A;
    --white: #FFFFFF;
    --white-off: #F8F8F8;
    --grey: #888888;
    --grey-light: #DDDDDD;
    --text-dark: #111111;
    --text-body: #444444;
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --radius: 8px;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

.section-pad { padding: 90px 0; }
.mb-60 { margin-bottom: 60px; }

/* ===== PAGE LOADER ===== */
#page-loader {
    position: fixed; inset: 0;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hide { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }
.loader-logo {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 900;
    color: var(--yellow);
    letter-spacing: 4px;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.95)} }

.loader-bar {
    width: 200px; height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 12px;
}
.loader-bar-fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 2px;
    animation: loadbar 1.5s ease forwards;
}
@keyframes loadbar { from{width:0} to{width:100%} }
.loader-text { color: var(--grey); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* ===== NAVBAR ===== */
#mainNav {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--yellow);
    padding: 14px 0;
    transition: var(--transition);
}
#mainNav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon {
    width: 40px; height: 40px;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 900; font-size: 1rem;
    letter-spacing: 1px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 800;
    color: var(--white); letter-spacing: 3px;
}
.brand-tagline {
    font-size: 0.55rem; font-weight: 400;
    color: var(--yellow); letter-spacing: 4px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 14px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 14px; right: 14px;
    height: 2px; background: var(--yellow);
    transform: scaleX(0); transition: transform 0.3s ease;
    transform-origin: left;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--yellow) !important; }

.dropdown-menu {
    background: var(--black-soft);
    border: 1px solid rgba(245,197,24,0.2);
    border-radius: var(--radius);
    padding: 8px 0;
}
.dropdown-item { color: rgba(255,255,255,0.8); font-size: 0.82rem; padding: 8px 18px; }
.dropdown-item:hover { background: rgba(245,197,24,0.1); color: var(--yellow); }

/* CTA Button */
.btn-primary-cta {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 24px;
    border: 2px solid var(--yellow);
    border-radius: 0;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: var(--transition);
    display: inline-block;
}
.btn-primary-cta:hover {
    background: transparent;
    color: var(--yellow);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 100vh; min-height: 600px;
    background: var(--black);
}

.hero-swiper { width: 100%; height: 100%; }

.hero-slide {
    position: relative;
    background-size: cover; background-position: center;
    display: flex; align-items: center;
}
.slide-1 { background-image: url('../images/hero-1.jpg'); }
.slide-2 { background-image: url('../images/hero-2.jpg'); }
.slide-3 { background-image: url('../images/hero-3.jpg'); }

/* Fallback gradient when no image */
.slide-1 { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2a1a00 100%); }
.slide-2 { background: linear-gradient(135deg, #0a1628 0%, #1a1a1a 50%, #1a0d00 100%); }
.slide-3 { background: linear-gradient(135deg, #0d0d0d 0%, #141414 50%, #1a1400 100%); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative; z-index: 2;
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.4);
    color: var(--yellow);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 24px;
}
.hero-line-1, .hero-line-2, .hero-line-3 {
    display: block;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--white);
    letter-spacing: -2px;
}
.hero-line-2 { color: var(--yellow); }

.hero-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid var(--yellow);
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
}
.btn-hero-primary:hover { background: transparent; color: var(--yellow); }

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 0;
    display: inline-block;
    transition: var(--transition);
    margin-left: 12px;
}
.btn-hero-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: var(--yellow);
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(245,197,24,0.3);
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after { font-size: 16px; }
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--yellow); }

.hero-scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; color: rgba(255,255,255,0.5);
    font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
    z-index: 3;
    animation: bounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: var(--yellow); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== MARQUEE TICKER ===== */
.marquee-ticker {
    background: var(--yellow);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-block;
    animation: ticker 30s linear infinite;
}
.ticker-track span {
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--black);
    padding: 0 20px;
}
.ticker-track .sep { color: var(--black-soft); opacity: 0.5; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--yellow);
    padding: 5px 14px;
    border-left: 3px solid var(--yellow);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.text-accent { color: var(--yellow); }
.section-subtitle {
    color: var(--grey);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-desc { color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }

/* ===== INTRO SECTION ===== */
.intro-section { background: var(--white-off); }
.intro-image-block { position: relative; padding: 20px; }
.intro-img-main img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 2;
}
.rounded-industrial { border-radius: 4px !important; }
.intro-img-badge {
    position: absolute; bottom: 0; right: 0;
    background: var(--yellow);
    color: var(--black);
    padding: 20px 24px;
    text-align: center;
    z-index: 3;
}
.badge-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.intro-img-accent {
    position: absolute; top: 0; left: 0;
    width: 60%; height: 60%;
    border: 3px solid var(--yellow);
    opacity: 0.3;
    z-index: 1;
}

.feature-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--text-dark);
    font-size: 0.82rem; font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    margin: 4px 6px 4px 0;
}
.feature-pill i { color: var(--yellow); }

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--black);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-bg-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245,197,24,0.03) 0px,
        rgba(245,197,24,0.03) 1px,
        transparent 1px,
        transparent 40px
    );
}
.stat-card { padding: 30px 20px; }
.stat-icon {
    font-size: 2rem; color: var(--yellow);
    margin-bottom: 16px; opacity: 0.7;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem; font-weight: 900;
    color: var(--white); line-height: 1;
    display: inline;
}
.stat-suffix {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 900;
    color: var(--yellow); display: inline;
}
.stat-label {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--grey);
    margin-top: 8px;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(245,197,24,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== PRODUCT CARDS ===== */
.products-section { background: var(--black-soft); }
.product-card {
    overflow: hidden;
    height: 100%;
}
.product-card-icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    z-index: 2;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.product-card { position: relative; }
.product-card-img {
    position: relative; overflow: hidden;
    height: 200px;
}
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-overlay {
    position: absolute; inset: 0;
    background: rgba(245,197,24,0.85);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-overlay {
    background: var(--black); color: var(--yellow);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 0; padding: 8px 20px;
}

.product-card-body { padding: 24px; }
.product-card-body h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
}
.product-card-body p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }
.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--yellow);
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    margin-top: 14px;
}
.card-link:hover { color: var(--white); gap: 10px; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--white-off); }
.why-list { margin-top: 30px; }
.why-item {
    display: flex; gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
    width: 48px; height: 48px;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.why-content h5 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.why-content p { font-size: 0.88rem; color: var(--grey); margin: 0; }

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.why-feature-card {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px 18px;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
}
.why-feature-card:hover,
.why-feature-card.highlight {
    border-color: rgba(245,197,24,0.3);
    background: var(--black-soft);
}
.why-feature-card.highlight { border-color: var(--yellow); }
.why-feature-card i { font-size: 1.8rem; color: var(--yellow); margin-bottom: 12px; display: block; }
.why-feature-card h6 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-feature-card p { font-size: 0.78rem; color: var(--grey); margin: 0; line-height: 1.5; }

/* ===== INDUSTRIES SECTION ===== */
.industries-section { background: var(--black); }
.industries-section .section-title { color: var(--white); }

.industry-card {
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 24px 16px;
    text-align: center;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}
.industry-card:hover {
    border-color: var(--yellow);
    background: rgba(245,197,24,0.05);
}
.industry-card i { font-size: 1.8rem; color: var(--yellow); margin-bottom: 10px; display: block; }
.industry-card span { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
.industries-swiper-wrap { padding: 10px 0 30px; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { background: var(--white-off); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: var(--radius);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
    position: absolute; inset: 0;
    background: rgba(245,197,24,0.9);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    opacity: 0; transition: var(--transition);
    color: var(--black);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover i { font-size: 1.5rem; }
.gallery-hover span { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--black-soft); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { }

.testimonial-card { padding: 32px; height: 100%; }
.stars { color: var(--yellow); margin-bottom: 16px; }
.testimonial-card p { color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 46px; height: 46px;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    flex-shrink: 0;
    border-radius: 50%;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { color: var(--grey); font-size: 0.78rem; }

.testimonials-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.3); }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--yellow); }

/* ===== CLIENTS ===== */
.clients-section { background: var(--white-off); }
.client-logo-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius);
    padding: 20px 30px;
    display: flex; align-items: center; justify-content: center;
    height: 80px;
    transition: var(--transition);
    filter: grayscale(1);
}
.client-logo-card:hover { filter: grayscale(0); border-color: var(--yellow); box-shadow: var(--shadow-md); }
.client-logo-card img { max-height: 40px; max-width: 120px; object-fit: contain; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--yellow);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0,0,0,0.03) 0px,
        rgba(0,0,0,0.03) 1px,
        transparent 1px,
        transparent 30px
    );
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900; color: var(--black);
    margin-bottom: 10px;
}
.cta-section .text-accent { color: var(--black-soft); text-decoration: underline; }
.cta-section p { color: rgba(0,0,0,0.65); font-size: 1rem; }

.btn-cta-white {
    background: var(--black); color: var(--yellow);
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: 2px solid var(--black);
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}
.btn-cta-white:hover { background: transparent; color: var(--black); }
.btn-cta-outline {
    background: transparent; color: var(--black);
    font-family: var(--font-display);
    font-size: 0.85rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: 2px solid var(--black);
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}
.btn-cta-outline:hover { background: var(--black); color: var(--yellow); }

/* ===== CONTACT SECTION ===== */
.contact-home { background: var(--white-off); }
.contact-info-block { padding-right: 20px; }
.contact-info-item {
    display: flex; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
    width: 44px; height: 44px;
    background: var(--yellow);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.ci-content h6 { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 3px; }
.ci-content p, .ci-content a { color: var(--text-dark); font-size: 0.95rem; }
.ci-content a:hover { color: var(--yellow); }

.social-links { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    background: var(--black);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-btn:hover { background: var(--yellow); color: var(--black); }

.quick-contact-form .form-control {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    padding: 12px 16px;
    font-size: 0.88rem;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}
.quick-contact-form .form-control:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
    outline: none;
}

.map-container {
    border: 2px solid var(--grey-light);
    overflow: hidden;
    border-radius: var(--radius);
}

/* ===== FOOTER ===== */
.main-footer { background: var(--black); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 0 50px; }
.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--yellow); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--yellow); }

.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-left: 20px; }
.footer-bottom a:hover { color: var(--yellow); }

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px; right: 20px;
    display: flex; flex-direction: column;
    gap: 12px; z-index: 999;
}
.float-btn {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25D366; color: var(--white); }
.call-btn { background: var(--yellow); color: var(--black); }

.float-tooltip {
    position: absolute; right: 62px;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem; font-weight: 500;
    padding: 5px 12px;
    white-space: nowrap;
    opacity: 0; transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
    border-radius: 4px;
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateX(0); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 96px; right: 20px;
    width: 40px; height: 40px;
    background: var(--black-mid);
    color: var(--yellow);
    border: 1px solid rgba(245,197,24,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    cursor: pointer; z-index: 998;
    opacity: 0; transform: translateY(10px);
    transition: var(--transition);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--yellow); color: var(--black); }

/* ===== LIGHTBOX ===== */
.lightbox-modal {
    position: fixed; inset: 0;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); cursor: pointer; }
.lightbox-content {
    position: relative; z-index: 2;
    max-width: 90vw; max-height: 85vh;
    text-align: center;
}
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border: 2px solid var(--yellow); }
.lightbox-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none;
    color: var(--white); font-size: 1.3rem;
    cursor: pointer; padding: 5px;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--yellow); }
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-top: 10px; }

/* ===== FORM MESSAGES ===== */
.alert-success-custom {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.4);
    color: #22c55e;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
}
.alert-error-custom {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.4);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.88rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: var(--black);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--yellow);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245,197,24,0.02) 0px,
        rgba(245,197,24,0.02) 1px,
        transparent 1px,
        transparent 50px
    );
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900; color: var(--white);
    letter-spacing: -1px;
}
.page-hero h1 span { color: var(--yellow); }
.breadcrumb { background: none; padding: 0; margin-top: 12px; }
.breadcrumb-item { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.4); }
.breadcrumb-item a:hover { color: var(--yellow); }
.breadcrumb-item.active { color: var(--yellow); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ===== UTILITIES ===== */
.text-yellow { color: var(--yellow) !important; }
.bg-black { background: var(--black) !important; }
.bg-black-soft { background: var(--black-soft) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .section-pad { padding: 60px 0; }
    .hero-content h1 .hero-line-1,
    .hero-content h1 .hero-line-2,
    .hero-content h1 .hero-line-3 { font-size: clamp(3rem, 12vw, 5rem); }
}

@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .section-pad { padding: 50px 0; }
    .hero-section { height: 90vh; }
    .btn-hero-outline { margin-left: 0; margin-top: 10px; display: block; width: fit-content; }
    .hero-cta { display: flex; flex-direction: column; gap: 10px; }
    .navbar-collapse { background: rgba(10,10,10,0.98); padding: 16px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .why-cards-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.5rem; }
}
