/* Custom Styling for Saffron Nature */

:root {
    --primary-color: #F27405;
    /* Saffron Orange */
    --secondary-color: #023E73;
    /* Deep Blue */
    --accent-color: #038C7F;
    /* Teal/Water color */
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --primary-light: rgba(242, 116, 5, 0.1);
    --info-light: rgba(13, 202, 240, 0.1);
    --muted-on-dark: rgba(255, 255, 255, 0.65);
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Global Text Contrast Fixes */
.text-muted {
    color: #616161 !important;
    /* Darker grey for better accessibility on white */
}

::placeholder {
    color: #888888 !important;
    opacity: 1;
}

.form-control::placeholder {
    color: #888888 !important;
}

.bg-dark .text-muted,
footer .text-muted,
.bg-primary .text-muted,
.bg-dark p.small.text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Ensure headings in white/light containers are ALWAYS dark */
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-light h1,
.bg-light h2,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light h6,
.card-body h3,
.card-body h4 {
    color: var(--text-dark) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: #ffffff !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: #ffffff !important;
}

/* Navbar Link Styling */
.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    /* Default dark for light backgrounds */
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

/* Navbar Toggler Visibility */
.navbar-toggler {
    border-color: rgb(255, 252, 252);
}



/* White text for navbar links over colored headers (non-home pages) */
body:not(.home-page) .navbar:not(.scrolled) .nav-link {
    color: #ffffff !important;
}

/* Dark text for navbar links when scrolled */
.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Ensure contrast for navbar over colored header background */
body:not(.home-page) .navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

body:not(.home-page) .navbar:not(.scrolled) .navbar-brand {
    color: #ffffff !important;
}

body:not(.home-page) .navbar:not(.scrolled) .navbar-brand span {
    color: #ffffff !important;
    opacity: 0.8;
}

/* Home page starts with dark text if transparent */
.home-page .navbar:not(.scrolled) .nav-link {
    color: var(--text-dark) !important;
}

.home-page .navbar:not(.scrolled) .navbar-brand {
    color: var(--secondary-color) !important;
}

.home-page .navbar:not(.scrolled) .navbar-brand span {
    color: var(--primary-color) !important;
    opacity: 1;
}

/* Internal Page Header */
.page-header {
    margin-top: 0;
    padding: 200px 0 100px;
    background: linear-gradient(-45deg, var(--secondary-color), #1a4f8a, var(--primary-color), #d96604);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30-30-30z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}



.page-header h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    opacity: 1;
    /* Fallback */
}

.page-header p.lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-flex;
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-item {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.breadcrumb-item.active {
    color: #ffffff !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: " / ";
}

/* Section Headings */
.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6)), url('../images/home_banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Hero Bottle Size Increase */
.hero-bottle {
    width: 65% !important;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    z-index: 2;
    position: relative;
}

@media (min-width: 992px) {
    .hero-bottle {
        width: 140% !important;
        /* Significantly larger on desktop */
        margin-left: -20%;
        margin-top: -20px;
        /* Adjust vertical center if needed */
    }
}

/* Creative Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff4b1f 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.hero-section .lead {
    color: #4a4a4a !important;
    /* DARKER for legibility */
}

.hero-section h1 span.text-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff9966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(242, 116, 5, 0.4));
    box-shadow: 0 4px 15px rgba(242, 116, 5, 0.2);
    backdrop-filter: blur(2px);
    z-index: 1;
    animation: floatBubble 15s linear infinite;
}

@keyframes floatBubble {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-20vh) scale(1.5);
        opacity: 0;
    }
}

.hero-bottle {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.tracking-wider {
    letter-spacing: 3px;
}

/* --- Modern Process Section --- */
.process-container {
    padding-top: 30px;
}

.connector-line-track {
    position: absolute;
    top: 50px;
    /* Adjust based on icon vertical center */
    left: 15%;
    right: 15%;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
    border-radius: 4px;
}

.connector-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), #ff8c00);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(var(--primary-rgb), 0.2);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(242, 116, 5, 0.3);
    z-index: 3;
    font-size: 0.9rem;
}

.step-icon-box {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 2;
    /* Above the line */
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff9966);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
}

.hover-transform:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.rotate-n3 {
    transform: rotate(-3deg);
}

.rotate-3 {
    transform: rotate(3deg);
}

.hover-rotate-0:hover {
    transform: rotate(0deg) scale(1.02);
}

.blur-3xl {
    filter: blur(80px);
}

.feature-item {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* --- Mobile & Tablet Responsiveness --- */
@media (max-width: 991.98px) {

    /* Tablet & Mobile Shared Styles */
    .image-stack {
        margin-top: 40px;
    }

    .process-container {
        padding-top: 0;
    }

    /* Hero - Centered on Tablet+Mobile */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-text-content {
        margin-bottom: 50px;
    }

    .hero-text-content p {
        padding-right: 0 !important;
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-bottle {
        width: 70% !important;
        margin: 0 auto;
    }

    /* Stacked Layouts for Features/About on Tablet too */
    .info-card.ms-md-4 {
        margin-left: 0 !important;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {

    /* Large Phones & Smaller */
    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    /* Hero Buttons Stack */
    .hero-btns .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Stats Stack */
    .stats-row {
        text-align: center;
    }

    .stats-row>div {
        border: none !important;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee !important;
        padding-bottom: 15px;
    }

    .stats-row>div:last-child {
        border-bottom: none !important;
    }

    /* Process Section */
    .step-content {
        margin-bottom: 20px;
    }

    /* Features & About - Vertical Stack */
    .feature-item,
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem !important;
    }

    .feature-item .icon-wrapper,
    .info-card .icon-box {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    /* About Blob adjustments */
    .start-blob {
        width: 200px !important;
        height: 200px !important;
        left: -50px !important;
        opacity: 0.15 !important;
    }
}

border-bottom: 1px solid #eee !important;
padding-bottom: 15px;
}

.stats-row>div:last-child {
    border-bottom: none !important;
}

/* Bottle Image */
.hero-bottle {
    width: 80% !important;
    margin: 0 auto;
}

/* Process Section */
.step-content {
    margin-bottom: 20px;
}

/* Why Choose Us - Stack Icon/Text */
.feature-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem !important;
}

.feature-item .icon-wrapper {
    margin-right: 0 !important;
    margin-bottom: 15px;
}

/* About Section */
.start-blob {
    width: 200px !important;
    height: 200px !important;
    left: -50px !important;
    opacity: 0.15 !important;
}

/* Info Cards (About) */
.info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem !important;
}

.info-card .icon-box {
    margin-right: 0 !important;
    margin-bottom: 15px;
}

.info-card.ms-md-4 {
    margin-left: 0 !important;
}
}

.tracking-wider {
    letter-spacing: 3px;
}

/* Wave Animation */
.water-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    z-index: 1;
    pointer-events: none !important;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('https://raw.githubusercontent.com/yxy-li/shuji/master/wave.png');
    /* Placeholder wave or I can generate SVG */
    background-size: 50% 100px;
    opacity: 0.2;
    pointer-events: none !important;
}

.wave1 {
    animation: wave 10s linear infinite;
    z-index: 1000;
    opacity: 0.5;
    bottom: 0;
    height: 100px;
}

.wave2 {
    animation: wave 15s linear infinite;
    z-index: 999;
    opacity: 0.2;
    bottom: 10px;
    height: 100px;
}

.wave3 {
    animation: wave 20s linear infinite;
    z-index: 998;
    opacity: 0.1;
    bottom: 15px;
    height: 100px;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Hero Section Enhancements */
.hero-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 120px 0 80px;
    position: relative;
}

.hero-section h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--secondary-color) !important;
    line-height: 1.1;
    margin-bottom: 30px;
    z-index: 2;
    position: relative;
    font-weight: 800 !important;
}

.cinematic-title>span {
    display: block;
}

.hero-section .lead {
    font-size: 1.3rem;
    color: #555 !important;
    max-width: 550px;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
    line-height: 1.7;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.4);
    padding: 15px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

/* Bottle Float & Rotate Animation */
.hero-bottle-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
    perspective: 1200px;
}

.hero-bottle {
    max-height: 650px;
    filter: drop-shadow(0 40px 100px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 3;
    pointer-events: none;
    transition: filter 0.5s ease;
}

.hero-bottle:hover {
    filter: drop-shadow(0 40px 120px rgba(3, 140, 127, 0.3));
}

/* Light Reflection Effect on Bottle */
.hero-bottle-wrapper::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 45%;
    width: 20%;
    height: 70%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 4;
    transform: skewX(-15deg);
    animation: reflection 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(5px);
}

@keyframes bottle3D {
    0% {
        transform: translateY(0) rotateY(-10deg) rotateZ(0);
    }

    33% {
        transform: translateY(-30px) rotateY(10deg) rotateZ(2deg);
    }

    66% {
        transform: translateY(-15px) rotateY(-5deg) rotateZ(-2deg);
    }

    100% {
        transform: translateY(0) rotateY(-10deg) rotateZ(0);
    }
}

@keyframes reflection {

    0%,
    100% {
        transform: translateX(-50px) skewX(-15deg);
        opacity: 0;
    }

    50% {
        transform: translateX(50px) skewX(-15deg);
        opacity: 1;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.15) 0%, rgba(2, 62, 115, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    animation: glowPulse 10s ease-in-out infinite;
    pointer-events: none !important;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Water Ripple Background Animation */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(3, 140, 127, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none !important;
}

.ripple-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(242, 116, 5, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(242, 116, 5, 0.05);
    border-radius: 50%;
    animation: rippleEffect 10s linear infinite;
    opacity: 0;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: scale(10);
        opacity: 0;
    }
}

.water-splash {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(3, 140, 127, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
}

.splash-1 {
    bottom: 10%;
    left: 20%;
    width: 200px;
    height: 100px;
    opacity: 0.4;
}

.splash-2 {
    bottom: 5%;
    right: 20%;
    width: 150px;
    height: 80px;
    opacity: 0.3;
}

.char {
    display: inline-block !important;
    will-change: transform, opacity;
}

/* GSAP Reveal Elements - Visible by default for reliability */
.reveal-on-scroll {
    opacity: 1;
    will-change: transform, opacity;
}

.product-card,
.branding-card,
.icon-box,
.stats-row>div {
    will-change: transform, opacity;
}

.liquid-section-transition {
    position: relative;
    overflow: hidden;
}

.liquid-section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 116, 5, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Button Pulse & Glow */
.btn-premium {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 20px rgba(242, 116, 5, 0.2);
    }

    50% {
        box-shadow: 0 10px 30px rgba(242, 116, 5, 0.6);
    }

    100% {
        box-shadow: 0 10px 20px rgba(242, 116, 5, 0.2);
    }
}

.btn-premium:hover,
.btn-outline-premium:hover {
    box-shadow: 0 0 20px rgba(242, 116, 5, 0.4) !important;
    transform: translateY(-5px) scale(1.05);
}

/* Premium Form & Floating Labels */
.premium-form .form-floating>.form-control,
.premium-form .form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
    line-height: 1.25;
}

.premium-form .form-floating>label {
    padding: 1rem 0.75rem;
    color: #666;
}

.premium-form .form-floating>.form-control:focus~label,
.premium-form .form-floating>.form-control:not(:placeholder-shown)~label,
.premium-form .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-info-light {
    background-color: var(--info-light);
}

.shadow-hover {
    transition: all 0.3s ease;
    background: #fff;
}

.shadow-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

section {
    padding: 80px 0;
}

.bg-primary-light {
    background-color: rgba(242, 116, 5, 0.1) !important;
}

.bg-info-light {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Product Section */
.product-card {
    transition: all 0.4s ease;
    border: 1px solid #eee !important;
}

.product-card.highlight {
    border: 2px solid var(--primary-color) !important;
    transform: scale(1.05);
}

.product-img img {
    max-height: 250px;
    object-fit: contain;
}

/* Branding Section */
.water-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523362622744-8c138fd9403b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.branding-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.branding-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Cinematic Title adjustments */
.cinematic-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    display: block;
}

.cinematic-title span {
    display: inline;
    /* Changed from block to allow natural wrapping */
}

.word-wrap {
    display: inline-block;
    white-space: nowrap;
}

.hero-text-content {
    max-width: 100%;
}

.hero-bottle-wrapper {
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bottle {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
    border-radius: 30px !important;
    mix-blend-mode: multiply;
    /* Blends white background into the banner */
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
        text-align: center;
        min-height: auto;
    }

    .hero-bottle {
        max-height: 40vh;
        margin-top: 30px;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .cinematic-title {
        font-size: 2.2rem;
    }
}

/* Inner Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #011f3a 100%);
    padding: 150px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1548932813-71ede5af932f?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    mix-blend-mode: overlay;
    opacity: 0.2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: white !important;
}

/* Branding Process */
.process-steps {
    position: relative;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 60px;
    font-family: 'Outfit', sans-serif;
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Form Glass Effect */
.glass-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

/* Contact Form Controls */
.premium-form .form-control,
.premium-form .form-select {
    border: 1px solid #eee;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.premium-form .form-control:focus,
.premium-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(242, 116, 5, 0.1);
    background: #fff;
}

/* Fix floating label overlap */
.premium-form .form-floating>label {
    color: #6c757d;
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    transform-origin: 0 0;
}

.premium-form .form-floating>.form-control:focus~label,
.premium-form .form-floating>.form-control:not(:placeholder-shown)~label,
.premium-form .form-floating>.form-select~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.premium-form .form-floating>.form-control,
.premium-form .form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.premium-form .form-floating>.form-control::placeholder {
    color: transparent;
}

.premium-form .form-floating>.form-control:focus::placeholder {
    color: #6c757d;
}

/* Contact Cards */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color) !important;
}

/* Google Map Grayscale Effect */
.grayscale-map {
    filter: grayscale(100%) invert(5%) contrast(90%);
    transition: filter 0.5s ease;
}

.grayscale-map:hover {
    filter: none;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Team Member Avatar */
.member-avatar {
    transition: all 0.4s ease;
}

.shadow-hover:hover .member-avatar {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

/* ========================================
   PRODUCTS PAGE STYLES
   ======================================== */

/* Product Cards */
.product-inner-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-inner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Quality Cards */
.quality-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.quality-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color) !important;
    transform: scale(1.05);
}