/* 
==============================================
CSS VARIABLES & RESET
==============================================
*/
:root {
    --color-primary: #0a2540; /* Deep blue */
    --color-primary-light: #18426d;
    --color-secondary: #00a8e8; /* Light sky blue */
    --color-accent: #c49a45; /* Gold/brown accent */
    --color-cream: #faf7f2; /* Soft dairy cream */
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 
==============================================
TYPOGRAPHY & UTILITIES
==============================================
*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
}

.text-left {
    text-align: left;
}


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

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 37, 64, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* Grids */
.grid {
    display: grid;
    gap: 30px;
}

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

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

/* 
==============================================
HEADER & NAVIGATION
==============================================
*/
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--color-primary);
    border-radius: 3px;
}

/* 
==============================================
HERO SECTION
==============================================
*/
.hero {
    padding: 12vw 0 8vw;
    background-image: url('assets/images/hero_banner.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-color: var(--color-cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-gold {
    color: #926d25; /* A darker gold/brown that matches the image */
}

.title-blue {
    color: #2b2568; /* A purplish-blue that matches the image */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* 
==============================================
APPLICATIONS SECTION
==============================================
*/
.app-card {
    background-color: var(--color-white);
    padding: 0 0 35px 0;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2b2568, #926d25);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.app-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.app-card:hover::before {
    opacity: 1;
}

.app-card-icon {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 0 25px 0;
    display: block;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    background-color: var(--color-white);
}

.app-card:hover .app-card-icon img {
    transform: scale(1.05);
}

.app-card-icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.app-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
    letter-spacing: -0.01em;
    padding: 0 30px;
}

.app-card-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    padding: 0 30px;
}

/* 
==============================================
BRAND STORY SECTION
==============================================
*/
.story-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-content, .story-image-wrapper {
    flex: 1;
}

.story-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-img {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* 
==============================================
PRODUCTS SECTION
==============================================
*/
.product-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 350px;
    background-color: var(--color-white);
    display: block;
    overflow: hidden;
    padding: 0;
}

.product-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

/* 
==============================================
PRODUCT OVERVIEW SECTION
==============================================
*/
.overview-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.overview-content, .overview-image-wrapper {
    flex: 1;
}

.overview-text {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.overview-subheading {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.overview-list {
    list-style: none;
}

.overview-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.overview-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 
==============================================
BENEFITS SECTION
==============================================
*/
.benefit-card {
    background-color: var(--color-white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* 
==============================================
STATEMENT SECTION
==============================================
*/
.statement {
    background-color: var(--color-primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.statement-text {
    color: var(--color-white);
    font-size: 2.2rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.4;
}

.accent-line {
    width: 100px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 40px auto 0;
    border-radius: 2px;
}

/* 
==============================================
FAQ SECTION
==============================================
*/
.faq-container {
    max-width: 800px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--color-cream);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: var(--transition);
}

.accordion-header.active::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-body {
    background-color: var(--color-white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body p {
    padding: 0 25px 25px;
    color: var(--color-text-light);
}

/* 
==============================================
FOOTER
==============================================
*/
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--color-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* 
==============================================
FLOATING BUTTONS & ANIMATIONS
==============================================
*/
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.whatsapp {
    right: 30px;
    background-color: #25D366;
    text-decoration: none;
}

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

.back-to-top {
    left: 30px;
    background-color: var(--color-primary);
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 
==============================================
POLICY PAGES
==============================================
*/
.page-header {
    background-color: var(--color-cream);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

.breadcrumb span {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: var(--color-text);
}

.page-title {
    font-size: 3rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.policy-section {
    padding: 80px 0;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.policy-content p {
    margin-bottom: 25px;
}

/* 
==============================================
MEDIA QUERIES (RESPONSIVE)
==============================================
*/
@media (max-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-container, .overview-container {
        flex-direction: column;
    }
    
    .story-image-wrapper, .overview-image-wrapper {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        z-index: 1000;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .hidden-mobile {
        display: none;
    }
    
    /* Layout */
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-content {
        background: rgba(255, 255, 255, 0.85);
        padding: 30px 20px;
        border-radius: 16px;
        backdrop-filter: blur(8px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .grid-3, .grid-5 {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .statement-text {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo img {
        height: 80px !important;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
