:root {
    --primary: #4361ee;
    --primary-blue: #1e3a8a;
    --primary-dark: #3a56d4;
    --secondary: #f72585;
    --accent: #4cc9f0;
    --purple: #7209b7;
    --purple-dark: #5a0892;
    --light: #f8f9fa;
    --dark: #212529;
    --darker: #111111;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #4ade80;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); background-color: #fff; overflow-x: hidden; padding-top: 80px; }

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
p { margin-bottom: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 90%; max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ========== MODERN JS EFFECTS CSS ========== */
.btn { position: relative; overflow: hidden; } 
.btn .ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripples 0.6s linear;
}
@keyframes ripples {
    0% { width: 0; height: 0; opacity: 0.5; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

.service-card, .gift-image img { transition: transform 0.4s ease, box-shadow 0.4s ease; }

/* ========== BUTTONS ========== */
.btn { display: inline-block; padding: 14px 32px; background-color: var(--primary); color: white; border: none; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); text-align: center; }
.btn:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow); color: white; }
.btn-secondary { background-color: var(--secondary); }
.btn-secondary:hover { background-color: #e11575; }

.btn-outline { background-color: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background-color: var(--primary); color: white; }
.btn-outline1 { background-color: transparent; border: 2px solid var(--secondary); color: var(--secondary); }
.btn-outline1:hover { background-color: var(--secondary); color: white; }
.btn-outline2 { background-color: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline2:hover { background-color: var(--accent); color: white; }
.btn-outline3 { background-color: transparent; border: 2px solid var(--purple); color: var(--purple); }
.btn-outline3:hover { background-color: var(--purple); color: white; }

.btn-whatsapp { background-color: #25D366; }
.btn-whatsapp:hover { background-color: #1da851; }

/* ========== HEADER ========== */
.main-header { position: fixed; top: 0; left: 0; width: 100%; background-color: #191919; z-index: 1000; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); transition: var(--transition); padding: 15px 0; }
.main-header.scrolled { padding: 10px 0; box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2); background-color: rgba(17, 17, 17, 0.95); backdrop-filter: blur(10px); }
.header-container { display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo-container { display: flex; align-items: center; z-index: 1002; flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; font-weight: 700; font-size: 1.5rem; transition: var(--transition); }
.logo:hover { transform: translateY(-2px); }
.logo-img { height: 45px; width: auto; object-fit: contain; transition: var(--transition); }
.logo-full { display: block; }
.logo-mini { display: none; height: 40px; }

.nav-container { display: flex; align-items: center; gap: 40px; }
.nav-menu { display: flex; gap: 5px; align-items: center; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 12px 20px; color: white; font-weight: 500; font-size: 0.95rem; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; position: relative; }
.nav-link:hover { background-color: rgba(255, 255, 255, 0.1); color: white; transform: translateY(-1px); }
.nav-link.active { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3); }

.nav-item.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px; background-color: var(--darker); border-radius: var(--radius); box-shadow: var(--shadow-heavy); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 1001; border: 1px solid rgba(255, 255, 255, 0.1); }
.dropdown-menu::after { content: ''; position: absolute; top: -20px; left: 0; width: 100%; height: 20px; background: transparent; }
.dropdown-item { display: block; padding: 12px 25px; color: white; transition: var(--transition); font-size: 0.9rem; position: relative; overflow: hidden; }
.dropdown-item:hover { background-color: rgba(255, 255, 255, 0.05); color: var(--accent); padding-left: 35px; }

.header-cta { display: flex; gap: 15px; align-items: center; }
.btn-quote { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--secondary), var(--primary)); color: white; padding: 12px 25px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: var(--transition); white-space: nowrap; box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3); border: none; cursor: pointer; }
.btn-quote:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(247, 37, 133, 0.4); background: linear-gradient(135deg, #e11575, var(--primary-dark)); }

.mobile-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 21px; background: transparent; border: none; cursor: pointer; padding: 0; z-index: 1002; position: relative; }
.mobile-toggle span { display: block; width: 100%; height: 3px; background-color: white; border-radius: 3px; transition: var(--transition); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); backdrop-filter: blur(3px); }
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Responsive Nav Logic */
@media (max-width: 1200px) { .nav-container { gap: 20px; } .nav-link { padding: 10px 15px; font-size: 0.9rem; } .btn-quote { padding: 10px 20px; font-size: 0.85rem; } }
@media (max-width: 1024px) { .logo-text { display: none; } .nav-container { gap: 15px; } .nav-menu { gap: 2px; } .logo-full { display: none; } .logo-mini { display: block; height: 45px; } .logo { height: 45px; } }
@media (max-width: 480px) {
    .mobile-toggle { display: flex; }
    .nav-container { position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background-color: var(--darker); flex-direction: column; justify-content: flex-start; padding: 100px 30px 40px; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001; overflow-y: auto; }
    .nav-container.active { right: 0; }
    .nav-menu { flex-direction: column; width: 100%; gap: 10px; }
    .nav-item { width: 100%; }
    .nav-link { padding: 15px 20px; justify-content: space-between; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-link.has-dropdown::after { content: '›'; font-size: 1.2rem; transition: transform 0.3s ease; }
    .nav-link.has-dropdown.active::after { transform: rotate(90deg); }
    .dropdown-menu { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background-color: rgba(255, 255, 255, 0.05); padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .dropdown-menu.active { max-height: 400px; margin-top: 10px; padding: 10px 0; }
    .dropdown-menu::before, .dropdown-menu::after { display: none; }
    .header-cta { width: 100%; margin-top: 20px; }
    .btn-quote { width: 100%; justify-content: center; }
}

/* Progressive Overflow Support */
.nav-link.icon-only { font-size: 0 !important; padding: 12px 15px 12px 20px !important; }
.nav-link.icon-only i { font-size: 1.1rem; margin: 0; }
.overflow-menu .dropdown-menu { right: 0; left: auto; min-width: 220px; }
.overflow-menu.force-show .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
#overflowDropdown .nav-item { width: 100%; display: block; }
#overflowDropdown .nav-link { padding: 12px 25px; color: white; font-size: 0.9rem; border-radius: 0; background: transparent; box-shadow: none; white-space: normal; }
#overflowDropdown .nav-link:hover { background-color: rgba(255, 255, 255, 0.05); color: var(--accent); padding-left: 35px; transform: none; }
#overflowDropdown .nav-link.active { color: var(--primary); background: transparent; }
#overflowDropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background-color: rgba(255, 255, 255, 0.05); padding: 0; min-width: 100%; }

/* ========== HERO SECTION ========== */
.hero { padding: 125px 0 60px; background: linear-gradient(135deg, #f5f7ff 0%, #e3e9ff 100%); position: relative; overflow: hidden; margin-top: -80px;  }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 1; }

.hero-content h1 { font-size: clamp(2.5rem, 4vw, 3rem); color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 span { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.15rem; color: var(--gray); margin-bottom: 35px; max-width: 90%; line-height: 1.7; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* IMAGE SLIDER */
.image-slider { position: relative; width: 100%; height: 500px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.slider-container { position: relative; width: 100%; height: 100%; }
.slider-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; background-size: cover; background-position: center; background-repeat: no-repeat; }
.slider-slide.active { opacity: 1; }
.slider-controls { position: absolute; bottom: 20px; left: 0; width: 100%; display: flex; justify-content: center; gap: 10px; z-index: 10; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background-color: white; transform: scale(1.2); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.8); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; color: var(--primary); transition: var(--transition); z-index: 10; }
.slider-nav:hover { background-color: white; box-shadow: var(--shadow); }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

/* ========== SERVICES SECTION ========== */
.section { padding: 30px 0 45px;  }
.section-title { text-align: center; margin-bottom: 40px; position: relative; }
.section-title h2 { display: inline-flex; align-items: center; position: relative; cursor: pointer; font-size: 2.5rem; font-weight: 700; color: var(--primary); padding-bottom: 5px; transition: color 0.3s ease; margin-bottom: 10px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--purple)); transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 2px; }
.section-title h2 .hover-arrow { opacity: 0; transform: translateX(-10px); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); color: linear-gradient(to right, var(--primary), var(--secondary)); margin-left: 8px; font-weight: 400; font-size: 2.5rem; }
.section-title h2:hover { color: var(--purple); }
.section-title h2:hover::after { width: 100%; }
.section-title h2:hover .hover-arrow { opacity: 1; transform: translateX(0); }
.section-title p { max-width: 700px; margin: 0 auto; color: var(--gray); margin-bottom: 20px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card { 
    background: white; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    overflow: hidden; 
    transition: var(--transition); 
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(67, 97, 238, 0.1); }

.service-image { height: 200px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-paper { background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%); }
.service-custom { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
.service-corporate { background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); }
.service-stationery { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%); }

.service-content-inner { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(5px);
    padding: 20px; 
    border-radius: 12px; 
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 80%;
    transition: var(--transition);
}
.service-card:hover .service-content-inner { transform: scale(1.05); }

.service-icon-large { font-size: 2.2rem; margin-bottom: 8px; }
.service-title { font-size: 1.3rem; font-weight: 600; color: var(--dark); }

.service-paper .service-icon-large { color: var(--primary); }
.service-custom .service-icon-large { color: var(--secondary); }
.service-corporate .service-icon-large { color: var(--accent); }
.service-stationery .service-icon-large { color: var(--purple); }

.service-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; text-align: center; align-items: center; }
.service-content p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }

/* ========== BULK SECTION ========== */
.bulk { background: linear-gradient(135deg, #f0f4ff 0%, #fff0f5 100%); padding: 60px 0; }
.bulk-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.bulk-title { font-size: 2.4rem; color: var(--dark); margin-bottom: 15px; font-weight: 700; }

.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.benefit { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 0; }
.benefit-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.b-icon-1 { background: #e0e7ff; color: #4361ee; } 
.b-icon-2 { background: #d1fae5; color: #10b981; } 
.b-icon-3 { background: #fef3c7; color: #f59e0b; } 
.b-icon-4 { background: #fce7f3; color: #f72585; } 
.benefit-content h4 { margin-bottom: 4px; color: var(--dark); font-size: 1.05rem; }
.benefit-content p { font-size: 0.9rem; color: var(--gray); margin: 0; line-height: 1.4; }

.bulk-clients { background: white; border-radius: 24px; padding: 40px; box-shadow: 0 15px 35px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.02); }
.bulk-clients h3 { color: var(--dark); margin-bottom: 25px; font-size: 1.4rem; border-bottom: 2px solid var(--gray-light); padding-bottom: 15px; }
.client-list { display: flex; flex-direction: column; gap: 15px; }
.client { display: flex; align-items: center; gap: 15px; padding: 12px; background-color: #f8faff; border-radius: 12px; transition: var(--transition); border: 1px solid transparent; }
.client:hover { background: white; border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(5px); }
.client-icon { font-size: 1.6rem; width: 45px; height: 45px; background: white; color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.client-info h4 { margin-bottom: 2px; color: var(--dark); font-size: 1rem; }
.client-info p { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ========== FEATURES SECTION ========== */
.features { background-color: #f8f9fa; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.feature-item { text-align: center; padding: 0px 20px 10px; }
.feature-icon-wrapper { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1.5rem; } 

/* ========== GIFT SUMMARY ========== */
.gift-summary { padding: 30px 0; background: #fcfcfc; border-top: 1px solid var(--gray-light); }
.gift-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.gift-image { position: relative; }
.gift-image img { border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); width: 100%; object-fit: cover; }
.gift-content h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; }
.gift-content p { font-size: 1.1rem; color: var(--gray); margin-bottom: 25px; line-height: 1.7; }
.gift-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 35px; }
.g-pill { background: #fff0f5; color: #f72585; padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(247, 37, 133, 0.1); }

/* ========== NEW MOTIVATING CTA ========== */
.motivating-cta-section { padding: 30px 0 50px; }
.motivating-cta { 
    padding: 80px 40px; 
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.9) 0%, rgba(247, 37, 133, 0.8) 100%), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; 
    border-radius: var(--radius-lg); 
    box-shadow: var(--shadow-heavy);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.motivating-cta h2 { color: white; font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 20px; position: relative; z-index: 1; font-weight: 700; letter-spacing: -0.5px;}
.motivating-cta p { max-width: 750px; margin: 0 auto 35px; font-size: 1.15rem; color: rgba(255,255,255,0.95); position: relative; z-index: 1; line-height: 1.7;}

/* Footer */
footer { background-color: var(--dark); color: white; padding: 40px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 25px; }
.footer-column h3 { color: white; margin-bottom: 1.5rem; font-size: 1.5rem; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-column ul li a:hover { color: white; padding-left: 5px; }
.contact-info li { display: flex; align-items: flex-start; gap: 10px; }
.contact-info i { color: var(--accent); margin-top: 5px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: var(--transition); color: white; }
.social-link:hover { background-color: var(--primary); transform: translateY(-3px); }
.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { background-color: #1da851; transform: scale(1.1); }

/* Responsive Breakpoints Overrides */
@media (max-width: 1360px) and (min-width: 921px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-container { gap: 40px; }
    .image-slider { height: 400px; }
}
@media (max-width: 921px) {
    .hero-container { grid-template-columns: 1fr; }
    .image-slider { order: -1; height: 350px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .bulk-grid { grid-template-columns: 1fr; gap: 40px; } 
    .benefits { grid-template-columns: 1fr; }
    .gift-container { grid-template-columns: 1fr; text-align: center; } 
    .gift-image { order: -1; } 
    .gift-pills { justify-content: center; }
}
@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr; }
    .image-slider { height: 300px; }
    .slider-nav { display: none; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========================================= */
/* PAGE: SERVICES (Specific Styles)          */
/* ========================================= */
.services-hero { padding: 140px 0 80px; background: linear-gradient(135deg, #f0f4ff 0%, #e3e9ff 100%); position: relative; overflow: hidden; display: flex; align-items: center; margin-top: -80px; }
.services-hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.services-hero-content h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--dark); line-height: 1.15; margin-bottom: 20px; }
.services-hero-content h1 span { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.services-hero-content p { font-size: 1.15rem; color: var(--gray); margin-bottom: 35px; max-width: 90%; line-height: 1.7; }
.services-hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-heavy); z-index: 2; position: relative; width: 100%; object-fit: cover; }
.hero-breadcrumb { display: flex; gap: 10px; margin-top: 1.5rem; font-size: 1rem; color: var(--gray); }
.hero-breadcrumb a { color: var(--dark); transition: var(--transition); font-weight: 500; }
.hero-breadcrumb a:hover { color: var(--primary); }

.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 1rem; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(to right, var(--primary), var(--secondary)); border-radius: 2px; }
.section-header p { max-width: 700px; margin: 0 auto; color: var(--gray); font-size: 1.1rem; line-height: 1.8; }

.btn-outline-secondary { background-color: transparent; border: 2px solid var(--secondary); color: var(--secondary); margin-top: 10px; }
.btn-outline-secondary:hover { background-color: var(--secondary); color: white; }

/* Service Detail Sections */
.service-detail-section { padding: 25px 0; position: relative; }
.service-detail-section:nth-child(even) { background-color: #f8f9fa; }
.service-detail-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-heavy); position: relative; height: 400px; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-image::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom right, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1)); pointer-events: none; }
.service-detail-content { padding: 15px; }
.service-detail-content h2 { font-size: 2.2rem; margin-bottom: 1rem; position: relative; padding-bottom: 10px; }
.service-detail-content h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: linear-gradient(to right, var(--secondary), var(--primary)); border-radius: 2px; }
.service-detail-content p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; color: var(--gray); }
.service-highlights { margin: 1.5rem 0; }
.service-highlights h3 { color: var(--secondary); margin-bottom: 1rem; font-size: 1.3rem; }

.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.highlight-item { background-color: white; padding: 15px; border-radius: var(--radius); border-left: 4px solid var(--primary); box-shadow: var(--shadow-light); transition: var(--transition); display: flex; align-items: flex-start; gap: 12px; }
.highlight-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.highlight-icon { font-size: 1.1rem; color: var(--primary); background-color: rgba(67, 97, 238, 0.1); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-text { flex: 1; }
.highlight-text h4 { color: var(--primary); margin-bottom: 3px; font-size: 1rem; }
.highlight-text p { font-size: 0.9rem; margin-bottom: 0; color: var(--gray); line-height: 1.4;}

/* Stats Section */
.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 40px 0; text-align: center; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.05"/></svg>'); background-size: cover; }
.stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; position: relative; z-index: 2; }
.stat-item { padding: 15px; }
.stat-number { font-size: 3rem; font-weight: 700; margin-bottom: 0px; font-family: 'Poppins', sans-serif; color: white; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.stat-label { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; }

/* Process Section */
.process-section { padding: 25px 0 30px; background-color: #f8f9fa; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 30px; }
.process-step { background-color: white; padding: 30px 20px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-light); transition: var(--transition); position: relative; }
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 700; margin: 0 auto 15px; position: relative; z-index: 2; }
.process-step h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.process-step p { font-size: 0.95rem; margin-bottom: 0; }

/* Service CTA */
.service-cta { padding: 50px 0; background: linear-gradient(135deg, rgba(247, 37, 133, 0.9) 0%, rgba(231, 21, 117, 0.9) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.05"/></svg>'); background-size: cover; color: white; text-align: center; position: relative; overflow: hidden; }
.service-cta .container { position: relative; z-index: 2; }
.service-cta h2 { color: white; font-size: 2.5rem; margin-bottom: 1rem; }
.service-cta p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); max-width: 700px; margin: 0 auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 25px; }

/* Services Page Media Queries */
@media (max-width: 992px) {
    .services-hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .services-hero-content p { margin: 0 auto 35px; }
    .services-hero-content div[style*="display: flex"] { justify-content: center; }
    .hero-breadcrumb { justify-content: center; }
    .service-detail-section { padding: 0 0 40px 0; overflow: hidden; }
    .service-detail-container { grid-template-columns: 1fr; gap: 0; }
    .service-detail-image { height: 350px; order: -1; width: 100vw; margin-left: calc(-50vw + 50%); border-radius: 0; box-shadow: none; }
    .service-detail-content { background-color: white; margin-top: -60px; position: relative; z-index: 5; border-radius: 24px; padding: 40px 30px 20px; box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1); }
    .service-detail-section:nth-child(even) .service-detail-content { background-color: #f8f9fa; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; } 
}
@media (max-width: 768px) { 
    .service-cta h2 { font-size: 2.3rem; } 
    .cta-buttons { flex-direction: column; align-items: center; } 
    .cta-buttons .btn { width: 100%; max-width: 300px; } 
}
@media (max-width: 576px) { 
    .service-detail-image { height: 250px; }
    .service-detail-content { margin-top: -40px; padding: 30px 15px 15px; border-radius: 16px; }
    .service-detail-content h2 { font-size: 1.8rem; }
    .highlight-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; gap: 15px; } 
}

/* ========================================= */
/* FIX: SERVICES PAGE CARDS                  */
/* ========================================= */
.detailed-services-grid .service-card {
    align-items: flex-start;
    text-align: left;
    border: 1px solid var(--gray-light);
    position: relative;
}

/* Restores the top colorful border */
.detailed-services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 2;
}

/* Restores the proper image sizing and layout */
.detailed-services-grid .service-image {
    display: block;
    width: 100%;
    height: 200px;
}

.detailed-services-grid .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Restores the icon to the top right corner */
.detailed-services-grid .service-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: var(--shadow-light);
    z-index: 10;
}

/* Restores the left-alignment and spacing for the content */
.detailed-services-grid .service-content {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 25px;
}

/* Restores the missing titles */
.detailed-services-grid .service-content h3 {
    display: block;
    width: 100%;
}

/* Restores the left-aligned bullet points */
.detailed-services-grid .service-features {
    width: 100%;
    margin-bottom: 20px;
}

.detailed-services-grid .service-features ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Makes the buttons span the full width like the original */
.detailed-services-grid .btn-outline, 
.detailed-services-grid .btn-outline-secondary {
    width: 100%;
    display: block;
}

/* ========================================= */
/* PAGE: SERVICES CARDS (Isolated)           */
/* ========================================= */
.svc-card { background-color: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-light); transition: var(--transition); height: 100%; display: flex; flex-direction: column; position: relative; border: 1px solid var(--gray-light); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-heavy); border-color: var(--primary); }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--primary), var(--secondary)); }

.svc-image { height: 200px; width: 100%; overflow: hidden; position: relative; }
.svc-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.svc-card:hover .svc-image img { transform: scale(1.05); }

.svc-icon { position: absolute; top: 15px; right: 15px; width: 45px; height: 45px; background-color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--primary); box-shadow: var(--shadow-light); }

.svc-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; text-align: left; }
.svc-content h3 { color: var(--primary); margin-bottom: 0.8rem; font-size: 1.2rem; }
.svc-content p { margin-bottom: 1.2rem; flex-grow: 1; color: var(--gray); line-height: 1.6; font-size: 0.95rem; }

.svc-features { margin: 0 0 20px 0; }
.svc-features li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--dark); font-size: 0.9rem; }
.svc-features i { color: var(--success); font-size: 0.85rem; }

.svc-content .btn { width: 100%; text-align: center; }

/* ========================================= */
/* FIX: SERVICES MOBILE OVERFLOW & H2 COLORS */
/* ========================================= */

/* 1. Restore the Primary Color for Services Headers */
.section-header h2,
.service-detail-content h2 {
    color: var(--primary);
}

/* 2. Fix the Mobile Viewport Overflow */
.services-hero-content h1 {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

@media (max-width: 576px) {
    .services-hero-content h1 {
        /* Scales the text down slightly so "Customization" fits */
        font-size: 2rem; 
        line-height: 1.3;
    }
    
    .services-hero-content h1 span {
        /* Prevents the gradient text from bleeding out of its box */
        display: inline-block; 
        max-width: 100%;
    }
}
/* ========================================= */
/* FIX: FINAL MOBILE HORIZONTAL SCROLL       */
/* ========================================= */

/* 1. Strictly enforce no horizontal scrolling on the root */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* 2. Fix the full-bleed image math for mobile */
@media (max-width: 992px) {
    .service-detail-image {
        /* Prevents the 100vw bug by locking the maximum width */
        max-width: 100vw;
    }
}

/* ========================================= */
/* PAGE: GIFT MATCHMAKER (Specific Styles)   */
/* ========================================= */
.quiz-section { padding: 40px 0 50px; min-height: calc(100vh - 80px); display: flex; align-items: center; }
.quiz-wrapper { background: white; border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.08); padding: 50px; max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; width: 100%; }

/* SKIP / CROSS BUTTON */
.skip-quiz-wrapper { position: absolute; top: 25px; right: 25px; z-index: 10; }
.skip-quiz-btn { display: flex; align-items: center; gap: 8px; background: rgba(0, 0, 0, 0.05); color: var(--gray); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.skip-quiz-btn:hover { background: var(--danger); color: white; box-shadow: var(--shadow); }

/* Progress Bar */
.progress-container { width: 100%; height: 6px; background-color: var(--gray-light); border-radius: 10px; margin-bottom: 40px; margin-top: 20px; overflow: hidden; }
.progress-bar { height: 100%; background: linear-gradient(135deg, var(--primary), var(--secondary)); width: 0%; transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 10px; }

/* Step Containers */
.quiz-step { display: none; animation: fadeIn 0.5s ease; }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.quiz-title { font-size: 2.2rem; color: var(--dark); margin-bottom: 10px; text-align: center; transition: all 0.3s; margin-top: 20px; }
.quiz-subtitle { color: var(--gray); text-align: center; margin-bottom: 30px; font-size: 1.1rem; padding: 0 20px; }

/* Options Grid */
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.option-card { background: #f8f9fa; border: 2px solid transparent; border-radius: var(--radius); padding: 30px 20px; text-align: center; cursor: pointer; transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 15px; }
.option-card i { font-size: 2.5rem; color: var(--primary); transition: var(--transition); }
.option-card h4 { margin: 0; font-size: 1.1rem; color: var(--dark); }
.option-card:hover { background: white; border-color: var(--primary); box-shadow: var(--shadow-light); transform: translateY(-5px); }
.option-card:hover i { color: var(--secondary); transform: scale(1.1); }

/* Loading Spinner */
.loading-screen { text-align: center; padding: 60px 0; }
.loader { width: 60px; height: 60px; border: 5px solid var(--gray-light); border-bottom-color: var(--secondary); border-radius: 50%; display: inline-block; animation: rotation 1s linear infinite; margin-bottom: 20px; }
@keyframes rotation { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* DYNAMIC MATCH RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; margin-top: 30px; }
.product-card { position: relative; border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; background: white; transition: var(--transition); text-align: center; padding-bottom: 20px; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-heavy); border-color: var(--primary); }
.product-img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 15px; }
.product-card h4 { color: var(--dark); margin-bottom: 5px; font-size: 1.1rem; padding: 0 10px; }
.product-price { color: var(--success); font-weight: 700; font-size: 1.2rem; margin-bottom: 15px; }

.match-badge { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg, var(--secondary), #ff4d94); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; box-shadow: var(--shadow); z-index: 2; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }

.btn-small { padding: 10px 20px; font-size: 0.9rem; }

.restart-btn { display: block; margin: 40px auto 0; background: transparent; color: var(--gray); border: none; cursor: pointer; font-size: 1rem; text-decoration: underline; }
.restart-btn:hover { color: var(--dark); }

@media (max-width: 768px) {
    .quiz-wrapper { padding: 50px 20px 40px; }
    .options-grid { grid-template-columns: 1fr; }
    .quiz-title { font-size: 1.8rem; }
    .skip-quiz-wrapper { top: 15px; right: 15px; }
    .skip-quiz-btn span { display: none; }
    .skip-quiz-btn { padding: 8px 12px; }
}
/* ========================================= */
/* FIX: QUIZ PAGE BACKGROUND & MINI-FOOTER   */
/* ========================================= */

/* 1. Restore the soft blue background */
.quiz-section {
    background-color: #f0f4ff;
}

/* 2. Target only the footer on the quiz page to remove space and the line */
.quiz-section ~ footer {
    padding: 20px 0;
}

.quiz-section ~ footer .copyright {
    border-top: none;
    padding-top: 0;
}

/* ========================================= */
/* PAGE: GIFT PRINTING (Specific Styles)     */
/* ========================================= */
.gift-hero { padding: 130px 0 60px; background: linear-gradient(135deg, #fff0f5 0%, #fdf2f8 100%); position: relative; overflow: hidden; display: flex; align-items: center; margin-top: -80px; }
.gift-hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.gift-hero-content h1 { font-size: 3.5rem; color: var(--dark); line-height: 1.1; margin-bottom: 20px; }
.gift-hero-content h1 span { color: var(--secondary); }
.gift-hero-content p { font-size: 1.15rem; color: var(--gray); margin-bottom: 35px; max-width: 90%; }
.gift-hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-heavy); z-index: 2; position: relative; width: 100%; object-fit: cover; }

.btn-gold { background-color: var(--gold, #ffd700); color: #000; }
.btn-gold:hover { background-color: var(--gold-dark, #daa520); color: #000; }
.text-center { text-align: center; }

@media (max-width: 992px) {
    .gift-hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .gift-hero-content p { margin: 0 auto 35px; }
    .gift-hero-content div[style*="display: flex"] { justify-content: center; }
}
@media (max-width: 768px) { .gift-hero-content h1 { font-size: 2.5rem; } }

.occasions-section { padding: 40px 0 50px; background-color: #f8f9fa; }
.occasions-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px; }
.occasion-pill { background-color: white; border: 1px solid var(--gray-light); padding: 12px 25px; border-radius: 50px; font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-light); transition: var(--transition); cursor: pointer; }
.occasion-pill:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-3px); box-shadow: var(--shadow); }
.occasion-pill i { color: var(--primary); font-size: 1.1rem; }
.occasion-pill:hover i { color: var(--secondary); }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.category-card { background: transparent; border-radius: 0; overflow: visible; box-shadow: none; border: none; transition: var(--transition); position: relative; }
.category-card:hover { transform: translateY(-10px); }
.category-image { height: 280px; overflow: hidden; position: relative; border-radius: var(--radius-lg); box-shadow: var(--shadow-light); }
.category-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card:hover .category-image img { transform: scale(1.08); }
.category-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(135deg, var(--secondary), #ff4d94); color: white; padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; box-shadow: 0 4px 10px rgba(247, 37, 133, 0.4); z-index: 2; }
.category-content { background: white; margin: -70px 20px 0; position: relative; z-index: 5; padding: 30px 25px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.03); }
.category-content h3 { color: var(--primary); margin-bottom: 5px; }
.starting-price { color: var(--success); font-weight: 700; font-size: 1.1rem; margin-bottom: 15px; display: inline-block; background: rgba(74, 222, 128, 0.1); padding: 4px 12px; border-radius: 50px; }
.category-features { margin-top: 10px; margin-bottom: 25px; }
.category-features li { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.category-features i { color: var(--primary); font-size: 0.8rem; }

.personalization-section { background-color: var(--darker); color: white; padding: 30px 0 40px; }
.personalization-section .section-header h2 { color: white; }
.personalization-section .section-header p { color: rgba(255,255,255,0.7); }
.personalization-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.personalization-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); padding: 40px 30px; text-align: center; transition: var(--transition); backdrop-filter: blur(10px); }
.personalization-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); border-color: var(--accent); }
.personalization-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.personalization-card h3 { color: white; margin-bottom: 15px; font-size: 1.3rem; }
.personalization-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.gallery-section { padding: 30px 0 40px; overflow: hidden; background: #fff; }
.gallery-marquee { display: flex; width: max-content; animation: scroll-left 35s linear infinite; }
.gallery-marquee:hover { animation-play-state: paused; }
.gallery-item { width: 280px; height: 280px; margin: 0 15px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-light); flex-shrink: 0; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.gallery-item:hover::after { opacity: 1; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.testimonials-section { background-color: #f8f9fa; padding: 30px 0 40px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-light); border-left: 4px solid var(--gold, #ffd700); }
.testimonial-content { font-style: italic; margin-bottom: 20px; color: var(--gray); line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.author-info h4 { margin-bottom: 2px; font-size: 1.05rem; }
.author-info p { margin-bottom: 0; font-size: 0.85rem; color: var(--gray); }

.faq-section { padding: 30px 0 0px; background-color: white; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); margin-bottom: 10px; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 25px 0; font-size: 1.15rem; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); font-size: 1.2rem; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--secondary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer p { padding-bottom: 25px; color: var(--gray); font-size: 1.05rem; line-height: 1.7; margin: 0; }

.catalog-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 50px; border-radius: var(--radius-lg); margin: 60px 0; box-shadow: var(--shadow-heavy); }
.catalog-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.catalog-text h2 { color: white; margin-bottom: 20px; font-size: 2.2rem; }
.catalog-text ul { margin: 25px 0; }
.catalog-text li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-size: 1.05rem; }
.catalog-text i { color: var(--gold, #ffd700); font-size: 1.2rem; }
.catalog-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-heavy); transform: rotate(2deg); transition: var(--transition); }
.catalog-banner:hover .catalog-image img { transform: rotate(0deg) scale(1.02); }

/* Renamed from .service-cta to .gift-cta to prevent conflicts */
.gift-cta { padding: 60px 0; background: linear-gradient(135deg, rgba(247, 37, 133, 0.85) 0%, rgba(114, 9, 183, 0.85) 100%), url('https://images.unsplash.com/photo-1513885535751-8b9f04e5a959?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed; color: white; text-align: center; position: relative; }
.gift-cta .cta-inner { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 50px 30px; border-radius: var(--radius-lg); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 15px 35px rgba(0,0,0,0.2); max-width: 900px; margin: 0 auto; }
.gift-cta h2 { color: white; font-size: 2.8rem; margin-bottom: 1.5rem; text-shadow: 0 2px 5px rgba(0,0,0,0.3); }
.gift-cta p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.95); max-width: 750px; margin: 0 auto 2.5rem; line-height: 1.8; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }

@media (max-width: 768px) {
    .gift-cta h2 { font-size: 2.2rem; }
    .gift-cta p { font-size: 1.05rem; }
    .gift-cta .cta-inner { padding: 40px 20px; }
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }

/* ========================================= */
/* PAGE: BULK & INSTITUTIONAL (Specifics)    */
/* ========================================= */
.enterprise-hero { position: relative; padding: 140px 0 80px; background-color: var(--darker); color: white; text-align: center; overflow: hidden; margin-top: -80px; }
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; z-index: 1; }
.enterprise-hero .container { position: relative; z-index: 2; }
.enterprise-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.enterprise-hero h1 span { background: linear-gradient(90deg, var(--accent), var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.enterprise-hero p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); max-width: 800px; margin: 0 auto 40px; }

/* Bento Box Grid */
.bento-section { padding: 40px 0; background-color: #f8f9fa; }
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bento-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 450px; box-shadow: var(--shadow-light); cursor: pointer; }
.bento-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.bento-card:hover img { transform: scale(1.08); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; transition: var(--transition); }
.bento-card:hover .bento-overlay { background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(67, 97, 238, 0.6) 100%); }
.bento-overlay h3 { color: white; font-size: 1.8rem; margin-bottom: 10px; }
.bento-overlay p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 1rem; max-width: 90%; }
.bento-features { display: flex; flex-wrap: wrap; gap: 10px; }
.bento-features span { background: rgba(255,255,255,0.15); backdrop-filter: blur(5px); color: white; padding: 5px 12px; border-radius: 50px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2); }

/* Advantages */
.advantages-section { padding: 30px 0 40px; background: white; }
.advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.advantage-card { background: white; padding: 40px 30px; border-radius: var(--radius-lg); border: 1px solid var(--gray-light); text-align: left; transition: var(--transition); position: relative; overflow: hidden; }
.advantage-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-heavy); border-color: transparent; }
.advantage-icon { width: 60px; height: 60px; background: rgba(67, 97, 238, 0.1); color: var(--primary); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px; transition: var(--transition); }
.advantage-card:hover .advantage-icon { background: var(--primary); color: white; }
.advantage-card h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.advantage-card p { font-size: 0.95rem; color: var(--gray); margin: 0; line-height: 1.6; }

/* Renamed to prevent conflict with Services Page */
.bulk-process-section { padding: 40px 0 50px; background-color: var(--darker); color: white; }
.bulk-process-section .section-header h2 { color: white; }
.bulk-process-row { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; position: relative; }
.bulk-process-row::before { content: ''; position: absolute; top: 35px; left: 50px; right: 50px; height: 2px; background: rgba(255,255,255,0.1); z-index: 1; }
.bulk-process-step { flex: 1; position: relative; z-index: 2; text-align: center; }
.bulk-step-number { width: 70px; height: 70px; background: var(--darker); border: 2px solid var(--accent); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 25px; transition: var(--transition); }
.bulk-process-step:hover .bulk-step-number { background: var(--accent); color: var(--darker); box-shadow: 0 0 20px rgba(76, 201, 240, 0.4); }
.bulk-process-step h4 { color: white; font-size: 1.1rem; margin-bottom: 10px; }
.bulk-process-step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

.corporate-cta-section { padding: 35px 0 50px; }
.corporate-cta { padding: 80px 40px; background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(67, 97, 238, 0.8) 100%), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-heavy); text-align: center; color: white; position: relative; }
.corporate-cta h2 { color: white; font-size: 2.8rem; margin-bottom: 20px; position: relative; z-index: 1;}
.corporate-cta p { max-width: 700px; margin: 0 auto 30px; font-size: 1.15rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1;}

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card { height: 350px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .bulk-process-row { flex-direction: column; gap: 40px; }
    .bulk-process-row::before { display: none; }
    .bulk-process-step { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
    .enterprise-hero { padding: 130px 0 80px; }
    .enterprise-hero h1 { font-size: 2.8rem; }
}
@media (max-width: 576px) {
    .enterprise-hero h1 { font-size: 2.2rem; }
    .bento-card { height: 300px; }
    .bento-overlay { padding: 25px; }
    .bento-overlay h3 { font-size: 1.4rem; }
    .advantages-grid { grid-template-columns: 1fr; }
}
/* ========================================= */
/* FIX: BULK PAGE HERO BUTTON COLOR          */
/* ========================================= */
.enterprise-hero .btn-outline {
    border-color: white;
    color: white;
}

.enterprise-hero .btn-outline:hover {
    background-color: white;
    color: var(--darker);
}

/* ========================================= */
/* FIX: BENTO CARD MOBILE TEXT OVERFLOW      */
/* ========================================= */
@media (max-width: 992px) {
    /* Gives the cards more breathing room on tablets */
    .bento-card { height: 400px; } 
}

@media (max-width: 576px) {
    /* Increases height on phones so the text never gets cut off */
    .bento-card { height: 420px; } 
    
    /* Tightens the spacing slightly for smaller screens */
    .bento-overlay { padding: 25px 20px; }
    .bento-overlay h3 { font-size: 1.5rem; margin-bottom: 8px; line-height: 1.2; }
    .bento-overlay p { font-size: 0.95rem; margin-bottom: 15px; }
    .bento-features { gap: 8px; }
    .bento-features span { padding: 4px 10px; font-size: 0.8rem; }
}

/* ========================================= */
/* PAGE: ABOUT US (Specific Styles)          */
/* ========================================= */
.about-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(227, 233, 255, 0.9) 100%), url('https://images.unsplash.com/photo-1596495578065-6e0763fa1178?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    margin-top: -80px;
}
.about-hero h1 { font-size: clamp(3rem, 5vw, 4.5rem); color: var(--dark); margin-bottom: 20px; letter-spacing: -1px; }
.about-hero h1 span { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.about-hero p { font-size: 1.25rem; color: var(--gray); max-width: 700px; margin: 0 auto; line-height: 1.8; }

/* Our Story */
.story-section { padding: 60px 0; background: white; }
.story-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--dark); }
.story-content p { font-size: 1.1rem; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.story-collage { position: relative; height: 500px; }
.story-img-1 { position: absolute; top: 0; right: 0; width: 75%; height: 75%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-heavy); z-index: 1; }
.story-img-2 { position: absolute; bottom: 0; left: 0; width: 60%; height: 60%; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-heavy); z-index: 2; border: 8px solid white; }
.year-badge { position: absolute; top: 30px; left: -20px; background: var(--secondary); color: white; padding: 15px 25px; border-radius: var(--radius); font-weight: 700; font-size: 1.2rem; z-index: 3; box-shadow: var(--shadow); }

/* About Stats (Isolated) */
.about-stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 15px 0 25px; text-align: center; position: relative; overflow: hidden; }
.about-stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.05"/></svg>'); background-size: cover; }
.about-stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; position: relative; z-index: 2; }
.about-stat-item { padding: 15px; }
.about-stat-number { font-size: 3.5rem; font-weight: 700; margin-bottom: 0px; font-family: 'Poppins', sans-serif; color: white; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.about-stat-label { font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* Core Values */
.values-section { background-color: var(--darker); padding: 55px 0 65px; color: white; }
.values-section .section-header h2 { color: white; }
.values-section .section-header p { color: rgba(255,255,255,0.7); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); padding: 50px 30px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.06); border-color: var(--accent); }
.value-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 25px; color: white; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.value-card h3 { color: white; font-size: 1.4rem; margin-bottom: 15px; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; margin: 0; }

/* Why Choose Us */
.why-us-section { padding: 55px 0; background: #f8f9fa; }
.why-us-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-list { list-style: none; padding: 0; }
.why-us-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.why-us-icon { width: 50px; height: 50px; background: white; color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: var(--shadow-light); }
.why-us-text h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 5px; }
.why-us-text p { color: var(--gray); font-size: 1rem; margin: 0; line-height: 1.6; }
.why-us-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-heavy); }
.why-us-image img { width: 100%; height: auto; display: block; }

/* Isolated About CTA */
.about-cta { padding: 55px 0 65px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; text-align: center; }
.about-cta h2 { color: white; font-size: 2.8rem; margin-bottom: 1.5rem; }
.about-cta p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); max-width: 700px; margin: 0 auto 2.5rem; }

/* About Page Media Queries */
@media (max-width: 992px) {
    .story-container, .why-us-container { grid-template-columns: 1fr; gap: 50px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .story-collage { height: 400px; margin-top: 30px; }
    .why-us-image { order: -1; }
}
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .about-stats-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .about-hero h1 { font-size: 2.2rem; }
    .story-collage { height: 300px; }
    .year-badge { padding: 10px 15px; font-size: 1rem; top: 10px; }
    .about-stats-container { grid-template-columns: 1fr; }
}

/* ========================================= */
/* PAGE: CONTACT US (Specific Styles)        */
/* ========================================= */
.contact-hero {
    padding: 130px 0 70px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.95) 0%, rgba(247, 37, 133, 0.9) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="white" fill-opacity="0.05"/></svg>');
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    margin-top: -80px;
}

.contact-hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
.contact-hero p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); max-width: 700px; margin: 0 auto; }

/* FIX: Centered & White Breadcrumbs for the Dark Hero */
.contact-hero .hero-breadcrumb { justify-content: center; }
.contact-hero .hero-breadcrumb a, 
.contact-hero .hero-breadcrumb span { color: rgba(255, 255, 255, 0.8); font-weight: 400; }
.contact-hero .hero-breadcrumb a:hover { color: white; text-decoration: underline; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }

/* Form Styling */
.contact-form-container { background: white; padding: 50px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-heavy); margin-top: -65px; position: relative; z-index: 10; border: 1px solid rgba(0,0,0,0.05); }
.contact-form-container h3 { color: var(--dark); font-size: 2rem; margin-bottom: 10px; }
.contact-form-container > p { color: var(--gray); margin-bottom: 30px; font-size: 1.05rem; }

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-weight: 500; color: var(--dark); margin-bottom: 8px; font-size: 0.95rem; text-align: left; }

.form-control { width: 100%; padding: 15px 20px; border: 1px solid var(--gray-light); border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--dark); background-color: #fcfcfc; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary); background-color: white; box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1); }
textarea.form-control { resize: vertical; min-height: 150px; }
.submit-btn { width: 100%; padding: 18px; font-size: 1.1rem; border-radius: var(--radius); }

/* Contact Info Cards */
.contact-info-wrapper { padding-top: 20px; text-align: left; }
.contact-info-wrapper h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 30px; }
.info-bento-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
.info-card { display: flex; align-items: flex-start; gap: 20px; background: #f8f9fa; padding: 30px; border-radius: var(--radius-lg); transition: var(--transition); border: 1px solid transparent; }
.info-card:hover { background: white; box-shadow: var(--shadow-light); border-color: var(--primary); transform: translateX(10px); }
.info-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 10px 15px rgba(247, 37, 133, 0.2); }
.info-text h4 { font-size: 1.2rem; color: var(--dark); margin-bottom: 5px; }
.info-text p { color: var(--gray); font-size: 1rem; margin: 0; line-height: 1.6; }
.info-text a { color: var(--primary); font-weight: 500; transition: var(--transition); }
.info-text a:hover { color: var(--secondary); text-decoration: underline; }

/* Map Section */
.map-section { padding: 0; margin-top: 60px; }
.map-container { width: 100%; height: 500px; background-color: #e9ecef; position: relative; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* Responsive Overrides for Contact */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-container { margin-top: -60px; padding: 40px 30px; }
    .contact-info-wrapper { padding-top: 0; }
    .info-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .info-card:hover { transform: translateY(-5px); }
}
@media (max-width: 768px) {
    .info-bento-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 120px 0 80px; }
    .contact-hero h1 { font-size: 2.8rem; }
    .map-container { height: 400px; }
}
@media (max-width: 576px) {
    .contact-form-container { padding: 30px 20px; border-radius: 16px; margin-top: -40px; }
    .contact-form-container h3 { font-size: 1.8rem; }
    .info-card { padding: 20px; flex-direction: column; align-items: center; text-align: center; }
}

/* ========================================= */
/* PAGE: REQUEST A QUOTE (Specific Styles)   */
/* ========================================= */
.text-gradient { background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

.quote-hero { 
    padding: 110px 0 110px; 
    background: linear-gradient(135deg, #f0f4ff 0%, #e3e9ff 100%); 
    text-align: center;
    position: relative;
    margin-top: -80px; 
}
.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(67, 97, 238, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 80% 20%, rgba(247, 37, 133, 0.05) 0%, transparent 50%);
}

.quote-hero h1 { font-size: clamp(2.5rem, 5vw, 3rem); color: var(--dark); margin-bottom: 20px; font-weight: 700; letter-spacing: -1px; position: relative; z-index: 2; }
.quote-hero p { font-size: 1.15rem; color: var(--gray); max-width: 700px; margin: 0 auto 35px; line-height: 1.7; position: relative; z-index: 2; }

.trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 2; }
.trust-badges span { background: white; padding: 10px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; color: var(--dark); box-shadow: 0 4px 10px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 8px; border: 1px solid rgba(0,0,0,0.02); }
.trust-badges i { color: var(--primary); font-size: 1.1rem;}

.quote-form-container { margin-top: -60px; position: relative; z-index: 10; display: flex; justify-content: center; padding-bottom: 100px; }
.quote-card { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); width: 100%; max-width: 850px; padding: 60px; border: 1px solid rgba(255,255,255,0.8); }

.step-indicator { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 600px; margin: 0 auto 60px auto; position: relative; }
.step-indicator::before { content: ''; position: absolute; top: 50%; transform: translateY(-50%); left: 0; width: 100%; height: 4px; background: var(--gray-light); z-index: 1; border-radius: 2px; }
.step-progress-bar { position: absolute; top: 50%; transform: translateY(-50%); left: 0; width: 0%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 2; transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px; }

.step-dot { width: 50px; height: 50px; background: white; border: 4px solid var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--gray); position: relative; z-index: 3; transition: var(--transition); font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.step-dot.active { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 0 6px rgba(67, 97, 238, 0.15); }
.step-dot.completed { background: var(--primary); border-color: var(--primary); color: white; }

.step-label { position: absolute; top: 65px; left: 50%; transform: translateX(-50%); font-size: 0.95rem; color: var(--gray); white-space: nowrap; font-weight: 500; }
.step-dot.active .step-label { color: var(--primary); font-weight: 600;}

.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }
.step-title { font-size: 1.8rem; color: var(--dark); margin-bottom: 30px; text-align: center; font-weight: 700;}

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.category-option { border: 2px solid transparent; border-radius: 16px; padding: 35px 20px; text-align: center; cursor: pointer; transition: var(--transition); background: #f8fafc; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }
.category-option:hover { background: white; border-color: rgba(67, 97, 238, 0.3); box-shadow: 0 10px 25px rgba(0,0,0,0.05); transform: translateY(-3px); }
.category-option.selected { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2), 0 10px 25px rgba(0,0,0,0.05); transform: translateY(-3px);}

.cat-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; transition: var(--transition); }
.category-option.selected .cat-icon { transform: scale(1.1); }
.category-option h4 { color: var(--dark); margin-bottom: 5px; font-size: 1.15rem; font-weight: 600; }
.category-option p { font-size: 0.9rem; color: var(--gray); margin: 0; }

/* Scoped specifically to Quote Form to avoid overriding Contact Form */
.quote-card .form-group { margin-bottom: 25px; text-align: left; }
.quote-card .form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: 10px; font-size: 0.95rem; }
.quote-card .form-control { width: 100%; padding: 16px 20px; border: 2px solid transparent; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: var(--transition); background: #f3f4f6; color: var(--dark); }
.quote-card .form-control:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1); }
.quote-card .form-control::placeholder { color: #9ca3af; }
.quote-card textarea.form-control { resize: vertical; min-height: 140px; }

.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }

.upload-zone { border: 2px dashed #d1d5db; border-radius: 16px; padding: 40px 20px; text-align: center; background: #f9fafb; cursor: pointer; transition: var(--transition); margin-bottom: 10px; }
.upload-zone:hover, .upload-zone.dragover { border-color: var(--primary); background: #f0f4ff; }
.upload-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.upload-text { color: var(--dark); font-weight: 600; margin-bottom: 5px; font-size: 1.05rem; }
.upload-subtext { font-size: 0.85rem; color: var(--gray); }
#fileInput { display: none; }
.file-list { font-size: 0.95rem; color: var(--success); font-weight: 500; text-align: center;}

.form-actions { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--gray-light); }

.success-state { text-align: center; padding: 40px 0; }
.success-icon { width: 90px; height: 90px; background: var(--success); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; margin: 0 auto 25px; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3); }

@media (max-width: 920px) {
    .quote-hero { padding: 140px 0 100px; }
    .quote-form-container { margin-top: -40px; }
    .trust-badges { gap: 10px; }
    .trust-badges span { padding: 8px 12px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .quote-card { padding: 40px 25px; }
    .category-grid, .two-cols { grid-template-columns: 1fr; gap: 15px; }
    .step-label { display: none; } 
    .step-indicator { max-width: 300px; }
}