/* style.css */
:root {
    --primary-gold: #C9A84C;
    --primary-gold-dark: #B8962E;
    --navy-blue: #1A2B6D;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --text-body: #3D3D3D;
    --text-muted: #7A7A7A;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-quote: 'Cormorant Garamond', serif;

    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-weight: 600;
}

.italic-quote {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-body);
}

.gold-text {
    color: var(--primary-gold);
}
.white-text {
    color: var(--white);
}
.text-white {
    color: var(--white);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
}

.section-tag {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
}
.block-tag {
    display: block;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.flex-col { display: flex; flex-direction: column; }

/* Grid Layouts */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.align-start { align-items: start; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-gold-filled {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 1px solid var(--primary-gold);
}
.btn-gold-filled:hover {
    background-color: var(--primary-gold-dark);
}

.btn-gold-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}
.btn-gold-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

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

.full-width {
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--box-shadow);
}

.bordered-card {
    border-left: 3px solid var(--primary-gold);
}
.top-bordered-card {
    border-top: 3px solid var(--primary-gold);
}

.hover-lift {
    transition: var(--transition);
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* 1. Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}
.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo-img {
    height: 55px;
    width: auto;
}
.brand-name {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--navy-blue);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 1rem 2rem 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 1.1rem;
}

/* 2. Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}

.hero-decorative-circle {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    padding-bottom: 120px; /* Space for stats */
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 4rem;
    line-height: 1.1;
    margin: 1.5rem 0;
}
.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 90%;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}
.hero-illustration {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}
.hero-illustration svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
    z-index: 2;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-number, .stat-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
}
.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* 3. Who We Are */
.principle-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.principle-cards .card {
    padding: 1.2rem 1.5rem;
}
.quote-box {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary-gold);
}
.quote-box.signature {
    background-color: var(--cream);
}

/* 4. About Founder */
.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.founder-subtitle {
    display: block;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.value-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.value-cards .card {
    padding: 1.5rem;
}
.value-cards h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* 5. Philosophy */
.philosophy .card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* 6. Vision & Mission */
.stacked-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* 7. Services */
.icon-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
}
.icon-card .icon {
    font-size: 1.8rem;
}
.icon-card h4 {
    font-size: 1.1rem;
}

/* 8. Pillars */
.pillar-card {
    position: relative;
    padding-top: 3rem;
    border-top: 3px solid var(--primary-gold);
}
.pillar-number {
    position: absolute;
    top: -25px;
    left: 2rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(201, 168, 76, 0.2);
    font-weight: 700;
    line-height: 1;
    display: none;
}
.pillar-card h4 {
    margin-bottom: 1rem;
}
.gold-footer-bar {
    background-color: var(--primary-gold);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    margin-top: 4rem;
}

/* 9. Products */
.products-grid {
    margin-top: 3rem;
}
.product-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}
.product-item .icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}
.product-item strong {
    display: block;
    color: var(--navy-blue);
    margin-bottom: 0.2rem;
}
.product-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 10. Calculator */
.calc-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    padding: 3rem;
}
.input-group {
    margin-bottom: 2rem;
}
.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}
.slider-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
input[type=range] {
    flex-grow: 1;
    accent-color: var(--primary-gold);
}
input[type=number] {
    width: 100px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}
.calc-results {
    background-color: var(--cream);
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.result-box span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.result-box h3 {
    font-size: 1.8rem;
    margin-top: 0.3rem;
}
.total-box {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
}

/* 11. How We Work */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}
.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    z-index: 2;
    position: relative;
}
.process-line {
    flex: 0.5;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary-gold) 50%, transparent 50%);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    margin-top: -60px; /* align with circle center */
}
.process-step h4 {
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 12. Contact */
.contact-list {
    list-style: none;
    margin-top: 1.5rem;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-list a {
    text-decoration: none;
    color: var(--text-body);
    transition: var(--transition);
}
.contact-list a:hover {
    color: var(--primary-gold);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* 13. Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}
.partner-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}
.partners-grid-large {
    display: flex;
    justify-content: center;
}
.partner-logo-large {
    max-height: 500px; /* Increased to allow it to be much larger */
    width: 100%;
    max-width: 1000px;
    object-fit: contain;
    flex: 1 1 100%; /* Force it to take full row */
    margin: 2rem 0; /* Add some space around it */
    cursor: pointer;
}

/* 14. Footer */
.footer {
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand .tagline {
    margin: 1rem 0;
    color: rgba(255,255,255,0.7);
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition);
}
.social-icon svg {
    width: 20px;
    height: 20px;
}
.social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}
.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links a, .footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-gold);
}
.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    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;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.floating-wa svg {
    width: 35px;
    height: 35px;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* Enhanced Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.2s;
}

/* Responsive Design Improvements */

@media (max-width: 1024px) {
    .section-header h2 { font-size: 2.2rem; }
    .hero-heading { font-size: 3.2rem; }
    
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats { 
        gap: 2rem; 
        padding: 1.5rem; 
        flex-wrap: wrap; 
        justify-content: center;
    }
    
    .calc-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 { font-size: 2rem; }
    
    .grid-2-col, .grid-3-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 0;
        max-width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-heading { 
        font-size: 2.8rem; 
    }
    
    .hero-subtext { 
        margin: 0 auto 2rem; 
        max-width: 100%;
    }
    
    .hero-actions { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    
    .hero-illustration {
        width: 100%;
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }
    
    .hero-illustration svg {
        max-height: 300px;
        width: 80%;
    }
    
    .hero-stats {
        position: relative;
        padding: 2rem 1rem;
        background: var(--white);
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: 3rem 1.5rem 2rem;
        border-radius: 8px;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }
    .process-line {
        display: none;
    }
    
    .nav-links, .nav-social {
        display: none;
    }
    .hamburger {
        display: block;
    }
    
    .calc-container {
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .quote-box {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 { font-size: 1.8rem; }
    
    .hero-heading { font-size: 2.2rem; }
    
    .hero-actions { 
        flex-direction: column; 
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    section { padding: 50px 0; }
    
    .stat-number, .stat-text {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .pillar-card {
        padding-top: 2rem;
    }
    
    .pillar-number {
        font-size: 2rem;
        top: -15px;
        left: 1rem;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .calc-container {
        padding: 1rem;
    }
    
    .slider-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    input[type=range] {
        width: 100%;
    }
    
    input[type=number] {
        width: 100%;
    }
}
