/* 
    Shree Media - Ultra Premium Design System
    Inspired by CandidShutters.com
*/

:root {
    --primary: #C5A023;
    --primary-light: #e8d47a;
    --primary-gradient: linear-gradient(135deg, #C5A023 0%, #E8D47A 100%);
    --secondary: #ffffff;
    --accent: #0a0a0a;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.85;
    font-family: var(--font-body);
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

/* ── Custom Cursor ── */
.custom-cursor {
    width: 40px; height: 40px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transition: transform 0.2s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.custom-cursor-dot {
    width: 5px; height: 5px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-dot { display: none !important; }
}

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

/* ── Loader ── */
.loader-wrapper {
    position: fixed; inset: 0;
    background: #fff;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}
.loader-wrapper .loader-logo {
    font-family: var(--font-body);
    font-size: 2rem; font-weight: 900;
    letter-spacing: 6px; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 30px;
    opacity: 0; animation: loaderFadeIn 0.8s 0.2s forwards;
}
.loader-wrapper .loader-logo span { color: var(--primary); font-weight: 300; }
.loader-bar {
    width: 120px; height: 2px; background: #eee; position: relative; overflow: hidden;
    border-radius: 2px;
}
.loader-bar::after {
    content: ''; position: absolute; left: -40%; top: 0;
    width: 40%; height: 100%; background: var(--primary);
    animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide { 0%{left:-40%} 100%{left:100%} }
@keyframes loaderFadeIn { to{opacity:1} }

/* ── Navigation ── */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 60px;
    position: fixed; width: 100%; top: 0; z-index: 2000;
    transition: var(--transition);
}
nav.sticky {
    padding: 15px 60px;
    background: var(--glass);
    backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    border-bottom: 1px solid var(--glass-border);
}
nav.sticky .logo { color: #000; }
nav.sticky .nav-links a { color: #000; }
nav.sticky .menu-toggle span { background: #000; }
.logo {
    font-size: 1.5rem; font-weight: 900; color: #fff;
    text-decoration: none; text-transform: uppercase;
    letter-spacing: 5px; font-family: var(--font-body);
    transition: var(--transition);
}
.logo span { color: var(--primary); font-weight: 300; }

.nav-links {
    display: flex; gap: 40px; list-style: none; align-items: center;
}
.nav-links a {
    text-decoration: none; color: #fff;
    font-weight: 600; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 3px;
    transition: var(--transition); position: relative;
}
.nav-links a:not(.contact-btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--primary);
    transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:not(.contact-btn):hover::after { width: 100%; }

.contact-btn {
    background: var(--primary-gradient) !important; color: #000 !important;
    padding: 12px 28px !important; border-radius: var(--radius-sm) !important;
    letter-spacing: 2px !important; border: none !important;
}
.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,160,35,0.2) !important; }

/* ── Dropdown System ── */
.dropdown { position: relative; }
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--glass-border);
    z-index: 3000;
}
.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}
.dropdown-content a {
    color: #1a1a1a !important;
    padding: 12px 25px;
    display: block;
    font-size: 0.75rem !important;
    letter-spacing: 2px;
    transition: var(--transition);
}
.dropdown-content a::after { display: none !important; }
.dropdown-content a:hover {
    background: rgba(197, 160, 35, 0.05);
    color: var(--primary) !important;
    padding-left: 30px;
}

/* Sticky Nav Dropdown adjustment */
nav.sticky .dropdown-content {
    background: var(--glass);
    top: 80%;
}

.mobile-services { text-align: center; width: 100%; }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; z-index: 3000; }
.menu-toggle span {
    display: block; width: 28px; height: 2px; background: #fff;
    margin: 6px 0; transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

.mobile-menu {
    position: fixed; inset: 0; background: #fff; z-index: 2500;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: var(--font-heading); font-size: 2.5rem;
    text-decoration: none; color: var(--accent);
    margin: 15px 0; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--primary); }

/* ── Hero Section ── */
.hero {
    height: 100vh; width: 100%;
    overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
@keyframes kenBurns { from{transform:scale(1)} to{transform:scale(1.12)} }

.hero-content {
    position: relative; z-index: 2; text-align: center; color: #fff;
    max-width: 950px; padding: 0 20px;
}
.hero h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    margin-bottom: 5px;
    opacity: 0; transform: translateY(60px);
    letter-spacing: 8px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero p {
    font-size: 0.95rem; letter-spacing: 10px;
    text-transform: uppercase; margin-bottom: 50px;
    opacity: 0; transform: translateY(30px);
    font-family: var(--font-body); font-weight: 300;
}
.hero-btns { opacity: 0; transform: translateY(20px); }

/* Page Hero (sub-pages) */
.page-hero {
    height: 70vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.page-hero .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
}
.page-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    z-index: 1;
}
.page-hero .hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 6px; margin-bottom: 15px;
}
.page-hero p {
    font-size: 1rem; letter-spacing: 4px;
    font-family: var(--font-body); color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* ── Section System ── */
section { padding: 140px 60px; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header span {
    display: inline-block; color: var(--primary);
    text-transform: uppercase; letter-spacing: 7px;
    font-size: 0.8rem; margin-bottom: 25px; font-weight: 600;
    font-family: var(--font-body);
    position: relative; padding: 0 30px;
}
.section-header span::before, .section-header span::after {
    content: ''; position: absolute; top: 50%;
    width: 20px; height: 1.5px; background: var(--primary);
}
.section-header span::before { left: 0; }
.section-header span::after { right: 0; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -1px; }
.section-header p {
    max-width: 600px; margin: 20px auto 0;
    color: var(--text-muted); font-size: 1.1rem;
    line-height: 1.9;
}

/* Background Floating Elements */
.floating-shape {
    position: absolute;
    z-index: -1;
    background: var(--primary);
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    animation: float 25s infinite alternate ease-in-out;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* ── Reveal System ── */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.23,1,0.32,1), transform 1.2s cubic-bezier(0.23,1,0.32,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-60px);
    transition: opacity 1.2s cubic-bezier(0.23,1,0.32,1), transform 1.2s cubic-bezier(0.23,1,0.32,1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(60px);
    transition: opacity 1.2s cubic-bezier(0.23,1,0.32,1), transform 1.2s cubic-bezier(0.23,1,0.32,1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-stagger { display: grid; }
.reveal-item {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.23,1,0.32,1), transform 0.9s cubic-bezier(0.23,1,0.32,1);
}
.reveal-item.active { opacity: 1; transform: translateY(0); }

/* ── Feature Cards ── */
.feature-card {
    padding: 55px 40px; background: #fff;
    border: 1px solid #f0f0f0; position: relative;
    overflow: hidden; transition: var(--transition);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px; background: var(--primary-gradient);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.feature-card:hover { 
    transform: translateY(-12px); 
    box-shadow: var(--shadow-premium); 
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card i { 
    font-size: 2.5rem; 
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px; 
    display: block; 
}
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; font-family: var(--font-heading); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ── Marquee Ticker ── */
.marquee-section { 
    padding: 45px 0; overflow: hidden; background: #000; 
    border-top: 1px solid rgba(197, 160, 35, 0.1);
    border-bottom: 1px solid rgba(197, 160, 35, 0.1);
}
.marquee-track {
    display: flex; animation: marqueeScroll 25s linear infinite; width: max-content;
}
.marquee-track span {
    font-family: var(--font-heading); font-size: 2.2rem;
    color: rgba(255,255,255,0.5); white-space: nowrap;
    padding: 0 60px; text-transform: uppercase; letter-spacing: 12px;
    font-weight: 300; transition: var(--transition);
}
.marquee-track span:hover { color: #fff; transform: scale(1.05); }
.marquee-track span em {
    font-style: italic; 
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    margin-left: 10px;
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Stats / Counter ── */
.stats-section {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; text-align: center;
    background: #000;
}
.stat-item {
    padding: 80px 30px;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-body); font-size: 4rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 10px;
}
.stat-label {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 4px; color: rgba(255,255,255,0.4);
    font-weight: 600;
}

/* ── Portfolio Grid (Mosaic Layout) ── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}
.portfolio-item {
    position: relative;
    overflow: hidden; background: #111; cursor: pointer;
    border-radius: var(--radius-sm);
}

/* Mosaic Spans */
.portfolio-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-row: span 2; }
.portfolio-item:nth-child(3) { grid-column: span 1; }
.portfolio-item:nth-child(4) { grid-column: span 1; grid-row: span 2; }
.portfolio-item:nth-child(5) { grid-column: span 2; }
.portfolio-item:nth-child(6) { grid-column: span 1; grid-row: span 2; }
.portfolio-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
.portfolio-item:nth-child(8) { grid-column: span 1; }
.portfolio-item:nth-child(9) { grid-column: span 1; }

.portfolio-item img, .portfolio-item video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23,1,0.32,1), filter 0.6s ease;
    filter: brightness(0.95);
}
.portfolio-item:hover img, .portfolio-item:hover video {
    transform: scale(1.1); filter: brightness(0.6);
}
.portfolio-info {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px 25px; color: #fff; z-index: 2;
    opacity: 0; transform: translateY(20px);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-info { opacity: 1; transform: translateY(0); }
.portfolio-info span {
    display: block; font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary-light); margin-bottom: 5px;
    font-family: var(--font-body);
}
.portfolio-info h3 { font-size: 1.4rem; font-weight: 500; font-family: var(--font-heading); }

/* ── Testimonials ── */
.testimonial-card {
    background: #fff; padding: 50px; border: 1px solid #f0f0f0;
    position: relative; transition: var(--transition);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}
.testimonial-card::before {
    content: '"'; font-family: var(--font-heading);
    font-size: 6rem; color: var(--primary); opacity: 0.1;
    position: absolute; top: 10px; left: 25px; line-height: 1;
}
.testimonial-card p {
    font-style: italic; font-size: 1.1rem;
    line-height: 1.9; color: var(--text-main); margin-bottom: 30px;
    position: relative; z-index: 1;
}
.testimonial-card .author { 
    font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; 
    margin-bottom: 5px; color: var(--accent);
}
.testimonial-card .role {
    font-size: 0.75rem; color: var(--primary);
    text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600;
}

/* ── Service Split Section ── */
.split-section {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
    max-width: 1300px; margin: 0 auto;
}
.split-image {
    position: relative; overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}
.split-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.23,1,0.32,1);
}
.split-image:hover img { transform: scale(1.08); }
.split-content span {
    font-size: 0.8rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--primary); font-weight: 600; display: block; margin-bottom: 20px;
}
.split-content h2 {
    font-size: 3.5rem; margin-bottom: 30px; line-height: 1.1; font-family: var(--font-heading);
}
.split-content h2 em {
    font-style: italic; color: var(--primary);
}
.split-content p {
    color: var(--text-muted); font-size: 1.1rem;
    line-height: 2; margin-bottom: 40px;
}
.split-content ul { list-style: none; }
.split-content ul li {
    padding: 15px 0; border-bottom: 1px solid #f0f0f0;
    font-size: 1rem; color: var(--text-main);
    display: flex; align-items: center; gap: 15px;
    font-weight: 500;
}
.split-content ul li i { 
    color: var(--primary); font-size: 0.9rem; 
    width: 25px; height: 25px; border-radius: 50%;
    background: rgba(197, 160, 35, 0.1);
    display: flex; align-items: center; justify-content: center;
}

/* ── Buttons ── */
.btn {
    padding: 18px 45px; border: 1px solid var(--accent);
    background: var(--accent); color: #fff;
    text-transform: uppercase; letter-spacing: 3px;
    font-size: 0.75rem; font-family: var(--font-body);
    cursor: pointer; transition: var(--transition);
    display: inline-block; text-decoration: none;
    position: relative; overflow: hidden;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: var(--primary-gradient); transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    z-index: 0;
}
.btn:hover { border-color: var(--primary); color: #000; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn:hover::after { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }

.btn-primary { 
    background: var(--primary-gradient); 
    border-color: transparent; 
    color: #000; 
}
.btn-primary::after { background: #fff; }

.btn-outline {
    background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
}
.btn-outline:hover { border-color: var(--primary); }

/* ── Forms ── */
.form-container {
    background: #fff; padding: 100px 80px;
    max-width: 900px; margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}
.form-group { margin-bottom: 40px; position: relative; }
.form-group label {
    display: block; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--accent);
    margin-bottom: 12px; font-family: var(--font-body);
    font-weight: 700;
}
.form-control {
    width: 100%; padding: 20px 25px; 
    background: #f8f8f8;
    border: 1.5px solid transparent; 
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 1rem;
    transition: var(--transition); color: var(--text-main);
}
.form-control:hover { background: #f0f0f0; }
.form-control:focus { 
    background: #fff;
    border-color: var(--primary); 
    box-shadow: 0 10px 30px rgba(197, 160, 35, 0.08);
    outline: none; 
}
textarea.form-control { resize: vertical; min-height: 150px; padding-top: 20px; }

/* Dark Form Variant */
.dark-form .form-container { background: #111; border-color: rgba(255,255,255,0.05); }
.dark-form .form-group label { color: #fff; }
.dark-form .form-control { background: #1a1a1a; color: #fff; border-color: rgba(255,255,255,0.05); }
.dark-form .form-control:focus { background: #000; border-color: var(--primary); }

/* Scroll Bar Refinement */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f9f9f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
    border: 2px solid #f9f9f9;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
.form-control::placeholder { color: #ccc; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── Footer ── */
.site-footer {
    background: var(--accent); color: #fff; padding: 100px 60px 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 80px;
}
.footer-brand .logo {
    color: #fff; font-size: 1.3rem; display: inline-block; margin-bottom: 20px;
}
.footer-brand p { color: #ffffff; font-size: 1.05rem; line-height: 1.8; max-width: 350px; }

.footer-col h4 {
    font-family: var(--font-body); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--primary); margin-bottom: 25px; font-weight: 700;
}
.footer-col a {
    display: block; color: #ffffff;
    text-decoration: none; font-size: 1.05rem;
    padding: 8px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--primary); padding-left: 8px; }

.footer-social { display: flex; gap: 15px; margin-top: 30px; }
.footer-social a {
    width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #ffffff; transition: var(--transition);
    font-size: 1.1rem;
}
.footer-social a:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-5px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.95rem; color: #ffffff; }

/* ── Floating WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Scroll-to-top ── */
#scrollTop {
    position: fixed; bottom: 40px; right: 40px;
    width: 55px; height: 55px;
    background: #fff; color: var(--primary);
    border: 1px solid #f0f0f0;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 1000; font-size: 1.1rem;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
#scrollTop.active { opacity: 1; visibility: visible; }
#scrollTop:hover { 
    background: var(--primary-gradient); 
    color: #fff; 
    transform: translateY(-5px);
    border-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    nav { padding: 25px 30px; }
    nav.sticky { padding: 15px 30px; }
    section { padding: 100px 30px; }
    .portfolio-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-auto-rows: 250px;
    }
    .portfolio-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .portfolio-item:nth-child(1), .portfolio-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }
    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .stats-section { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .menu-toggle { display: block; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; gap: 15px; }
    .portfolio-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .hero h1 { font-size: 3rem !important; letter-spacing: 4px; }
    section { padding: 80px 20px; }
    .stats-section { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .form-container { padding: 40px 25px; }
    .mobile-menu a { font-size: 1.8rem; }
    .page-hero { height: 50vh; }
}

/* ═══ STORIES SECTION ═══ */
.stories-section {
    background: #f9f6f1; /* Premium light beige */
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.stories-header {
    text-align: center;
    margin-bottom: 80px;
}

.stories-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #222;
    line-height: 1.2;
    margin: 0;
}

.stories-header h2 em {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.stories-header h2 em::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #c5a023;
}

.stories-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.stories-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0 60px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.stories-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.story-card {
    min-width: 420px;
    flex: 0 0 420px;
    scroll-snap-align: start;
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-card:hover {
    transform: translateY(-15px);
}

.story-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-info {
    text-align: center;
    padding: 0 30px;
}

.story-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-info p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 35%;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    color: #333;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-btn:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(197, 160, 35, 0.2);
}

.nav-btn i {
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .stories-carousel-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .stories-section { padding: 80px 0; }
    .stories-header { margin-bottom: 50px; }
    .stories-header h2 { font-size: 2.2rem; }
    .story-card {
        min-width: 320px;
        flex: 0 0 320px;
    }
    .story-image { height: 260px; }
    .story-info h3 { font-size: 1.4rem; }
    .nav-btn { display: none; }
}
