/* ========== CSS VARIABLES & BRAND PALETTE ========== */
:root {
    --primary: #c8a44e;
    --primary-dark: #a8863a;
    --primary-light: #e8c86e;
    --secondary: #0f2b48;
    --secondary-dark: #0b1c30;
    --dark: #071322;
    --darker: #040a12;
    --light: #f5f8fa;
    --white: #ffffff;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --gradient-gold: linear-gradient(135deg, #c8a44e, #f3d078);
    --gradient-dark: linear-gradient(135deg, #0f2b48, #071322);
    --gradient-hero: linear-gradient(135deg, rgba(7, 19, 34, 0.95), rgba(15, 43, 72, 0.85));
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 30px rgba(200, 164, 78, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #334155;
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ========== SCROLLBAR STYLING ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.preloader-logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(200, 164, 78, 0.15);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.top-bar-left a i {
    color: var(--primary);
    font-size: 12px;
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-bar-right a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.top-bar-right a:hover {
    background: var(--gradient-gold);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ========== NAVBAR / HEADER ========== */
.navbar {
    position: fixed;
    top: 36px; /* Account for slim top bar height */
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    transition: var(--transition);
}

/* Adjust navbar top when scrolled or on mobile */
.navbar.scrolled {
    top: 0;
    background: rgba(7, 19, 34, 0.95);
    backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    box-shadow: 0 3px 10px rgba(200, 164, 78, 0.2);
    object-fit: cover;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--dark);
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(200, 164, 78, 0.2);
}

.logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 9px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: block;
    margin-top: 1px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
    background: rgba(200, 164, 78, 0.08);
    border-color: rgba(200, 164, 78, 0.12);
}

.nav-cta {
    display: block;
}

.nav-cta .btn {
    padding: 6px 18px;
    font-size: 13px;
    min-height: 34px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--dark);
    z-index: 10000;
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: var(--primary);
    padding-left: 12px;
}

.mobile-menu .menu-contact {
    margin-top: 40px;
    padding: 24px;
    background: rgba(200, 164, 78, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(200, 164, 78, 0.15);
}

.mobile-menu .menu-contact h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu .menu-contact a {
    border: none;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        var(--gradient-hero),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 164, 78, 0.12);
    border: 1px solid rgba(200, 164, 78, 0.3);
    padding: 8px 24px;
    border-radius: 30px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge i {
    animation: pulse-icon 2.5s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.7; }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 6.5vw, 76px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 900;
    max-width: 900px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-3px);
}

.hero-stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 164, 78, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}

.hero-stat h3 {
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
}

.hero-stat p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-indicator span::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-dot 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes scroll-dot {
    0% { opacity: 1; top: 6px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 24px; }
}

.scroll-indicator p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    min-height: 48px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 164, 78, 0.5);
    background: linear-gradient(135deg, #e8c86e, #c8a44e);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(200, 164, 78, 0.8);
}

.btn-outline:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-white {
    background: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--light);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(200, 164, 78, 0.1);
    border: 1px solid rgba(200, 164, 78, 0.15);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.5vw, 44px);
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

.section-header .line {
    width: 70px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 24px auto 0;
    border-radius: 2px;
}

/* ========== SANSKRIT MEANING OF NIRMANAM ========== */
.nirmanam-meaning {
    background: radial-gradient(circle at 10% 20%, rgba(245, 248, 250, 1) 0%, rgba(230, 237, 243, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.nirmanam-meaning::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(rgba(200, 164, 78, 0.08), transparent);
    top: -50px;
    left: -50px;
    border-radius: 50%;
}

.meaning-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Stylized Indian Heritage Parchment Scroll Card */
.scroll-card {
    background: #fbf8f0;
    border: 1px solid #ebdcb9;
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 15px 50px rgba(181, 161, 119, 0.15);
    position: relative;
    overflow: hidden;
}

/* Scroll Roller Decors (Top & Bottom borders/shadows) */
.scroll-card::before, .scroll-card::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(90deg, #c8a44e, #c8a44e 8px, #ebdcb9 8px, #ebdcb9 16px);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.15);
}

.scroll-card::before { top: 0; }
.scroll-card::after { bottom: 0; }

.scroll-header {
    text-align: center;
    border-bottom: 2px dashed rgba(200, 164, 78, 0.3);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.scroll-logo {
    width: 80px;
    margin: 0 auto 12px;
    opacity: 0.85;
}

.scroll-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--secondary-dark);
    font-weight: 800;
}

.scroll-sanskrit {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 1px;
}

.scroll-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 16px;
    font-weight: 600;
}

.meaning-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.meaning-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.meaning-item i {
    width: 32px;
    height: 32px;
    background: rgba(200, 164, 78, 0.12);
    border-radius: 50%;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.meaning-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary);
}

.scroll-footer {
    border-top: 1px solid rgba(200, 164, 78, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    font-style: italic;
    color: var(--secondary);
    font-weight: 500;
}

.meaning-explain {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.explain-box {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.explain-box:hover {
    transform: translateX(8px);
    border-color: rgba(200, 164, 78, 0.2);
    box-shadow: var(--shadow-lg);
}

.explain-icon {
    width: 58px;
    height: 58px;
    background: var(--gradient-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(15, 43, 72, 0.15);
}

.explain-text h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.explain-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 164, 78, 0.35);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(200, 164, 78, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: rotate(-6deg) scale(1.05);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-size: 21px;
    color: var(--secondary);
    margin-bottom: 14px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features-list {
    margin-bottom: 24px;
    border-top: 1px solid var(--light-gray);
    padding-top: 18px;
}

.service-feature-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.service-feature-bullet i {
    color: var(--primary);
    font-size: 11px;
}

.service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}

.service-card .read-more i {
    transition: var(--transition);
}

.service-card:hover .read-more i {
    transform: translateX(6px);
    color: var(--primary);
}



/* ========== PORTFOLIO / GALLERY SECTION ========== */
.portfolio {
    background: var(--dark);
}

.portfolio .section-header h2 {
    color: var(--white);
}

.portfolio .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.portfolio-filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    min-height: 42px;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-card, .design-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.portfolio-card img, .design-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover img, .design-card:hover img {
    transform: scale(1.12);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 30px;
    background: linear-gradient(transparent, rgba(7, 19, 34, 0.95) 75%);
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 2;
}

.portfolio-card:hover .portfolio-overlay, .design-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay span {
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
}

/* Hover Quick Zoom Icon */
.portfolio-card .view-icon, .design-card .view-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: scale(0) rotate(-45deg);
    transition: var(--transition);
    z-index: 3;
    box-shadow: var(--shadow-gold);
}

.portfolio-card:hover .view-icon, .design-card:hover .view-icon {
    transform: scale(1) rotate(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 10, 18, 0.96);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    max-height: 80vh;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.lightbox-caption span {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg) scale(1.1);
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.lightbox-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.lightbox-nav button:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 164, 78, 0.25);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 66px;
    height: 66px;
    background: rgba(200, 164, 78, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
}

.why-card h3 {
    font-size: 19px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== OUR PROCESS TIMELINE ========== */
.process {
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

/* Timeline Horizontal Line (Desktop) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--light-gray);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    box-shadow: var(--shadow-gold);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary);
    margin: 15px auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08) translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: 17px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    padding: 0 10px;
}

/* ========== FOUNDERS / TEAM SECTION ========== */
.team {
    background: radial-gradient(circle at 10% 20%, rgba(245, 248, 250, 1) 0%, rgba(230, 237, 243, 0.7) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 78, 0.25);
}

.team-img {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: var(--secondary-dark);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(7, 19, 34, 0.9) 80%);
    display: flex;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: var(--shadow-gold);
}

.team-social a:hover {
    transform: translateY(-3px) scale(1.1);
}

.team-info {
    padding: 30px 24px;
}

.team-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 800;
}

.team-info span {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    background: var(--white);
    position: relative;
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px 24px;
}

.testimonial-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--light-gray);
}

.quote-icon {
    font-size: 44px;
    color: rgba(200, 164, 78, 0.25);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-meta h4 {
    font-size: 17px;
    color: var(--secondary);
    font-weight: 700;
}

.author-meta span {
    font-size: 13px;
    color: var(--gray);
}

.rating-stars {
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

/* Slider Navigation Controls */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: var(--light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.contact-sidebar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.contact-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-sidebar > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 35px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 164, 78, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--primary-light);
}

.contact-social-bar {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.contact-social-bar a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.contact-social-bar a:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Contact Lead Capture Form */
.contact-form-box {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.contact-form-box h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 25px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #334155;
    transition: var(--transition);
    background: var(--light);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.12);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.contact-form-box .btn {
    width: 100%;
}

/* Google Map Frame Box */
.map-box {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER STYLING ========== */
.footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
    border-top: 2px solid var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about .footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    font-weight: 800;
}

.footer-about .footer-logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    line-height: 1;
}

.footer-about .footer-logo-text span {
    font-size: 9px;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-links a i {
    color: var(--primary);
    font-size: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    min-height: 44px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========== FLOATING CONTACT TRIGGERS & TOAST ========== */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9998;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-4px);
}

.float-whatsapp {
    background: #25d366;
}

.float-phone {
    background: var(--gradient-gold);
    color: var(--dark);
}

/* Back to Top Icon */
.back-to-top {
    position: fixed;
    bottom: 165px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
}

/* Toast Message Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--dark);
    color: var(--white);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100002;
    transform: translateY(120px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateY(0);
}

.toast i {
    color: var(--primary);
    font-size: 18px;
}

.toast-msg {
    font-size: 14px;
    font-weight: 500;
}

/* ========== RESPONSIVE STYLING (MEDIA QUERIES) ========== */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .navbar {
        top: 0; /* Align to top */
    }

    .top-bar {
        display: none; /* Hide top bar on smaller viewports */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline::before {
        display: none; /* Hide horizontal timeline line */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Toggles & Drawer triggers (max-width: 768px) */
@media screen and (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .nav-links,
    .nav-cta {
        display: none; /* Rely on mobile menu */
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .meaning-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-card {
        padding: 35px 25px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 35px 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-box {
        height: 280px;
    }
}

/* Small Screens (max-width: 576px) */
@media screen and (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        height: 280px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-badge {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: -10px;
    }

    .process-icon {
        margin: 5px auto 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        bottom: 155px;
        right: 15px;
    }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-fade {
    transform: none;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* Staggered transition delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

/* Ensure elements are visible if animations are disabled or not supported */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
