:root {
    /* ==========================================================================
       MAIN BACKGROUNDS & OVERLAYS (Anti-Glare & Balanced Dark-Pink Base)
       ========================================================================== */
    --bg-dark-base: #140a0c;       /* Ang madilim na pinkish-black para sa body background */
    --overlay-light: rgba(28, 14, 17, 0.7); /* 70% Dark charcoal-rose sa kaliwa (likod ng text) */
    --overlay-dark: rgba(15, 7, 9, 0.92);  /* 92% Deep velvet black sa kanan (pampawala ng silaw) */

    /* ==========================================================================
       TYPOGRAPHY COLORS (High-Contrast & Readable)
       ========================================================================== */
    --text-primary: #ffffff;       /* Purong puti para sa malalaking H1 heading */
    --text-secondary: #fcebee;     /* Light pastel white-pink para sa pangkalahatang teksto */
    --text-muted: #e6ccd2;         /* Soft dusty rose para sa mga talata o intro paragraph */
    --text-dark-contrast: #1c0e11; /* Ang solid dark rosewood font kapag naka-hover ang mga buttons */

    /* ==========================================================================
       BRANDING & THEME COLORS (Light Gold & Premium Accents)
       ========================================================================== */
    --gold-primary: #e5b842;       /* Premium Light Gold para sa mga borders at taglines */
    --gold-gradient-end: #c29933;  /* Medyo madilim na ginto para sa dulo ng button gradient */
    --pink-pastel: #f7dcd1;        /* Maputlang rose pink para sa mga default link na kulay */

    /* ==========================================================================
       HOVER STATES (Soft Pink Backgrounds)
       ========================================================================== */
    --hover-pink-bg: #f3b0bc;      /* Soft Rose Pink na lumalabas kapag itinapat ang mouse */
    --hover-pink-border: #e29ba7;  /* Mas matingkad na pink border para sa hover accent */

    /* ==========================================================================
       SHADOWS & EFFECTS
       ========================================================================== */
    --shadow-gold: rgba(229, 184, 66, 0.3);
    --shadow-pink-glow: rgba(243, 176, 188, 0.5);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #140a0c; /* Mas madilim na base para swabe ang dugtong ng image */
    color: #fcebee; /* Binago sa light pinkish-white para madaling basahin sa bago at madilim na overlay */
    overflow-x: hidden;
}
/* Overlay na nakatago sa simula */
/* Mobile Overlay Styles */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: var(--hover-pink-border); /* Soft pink glow na may opacity para hindi masyadong matindi */
    overflow-x: hidden;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
    width: 100%;
}

.overlay a {
    padding: 15px;
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
    display: block;
    transition: 0.3s;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px !important; /* Gawing malaki yung X */
    color: white;
    cursor: pointer;
}

.close-btn:hover { color: #c5a059; }

/* Header fix para ma-click ang logo */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.logo-container {
    cursor: pointer;
    z-index: 100; /* Mas mataas dapat sa header */
}

/* Itago ang menu sa desktop */
@media (min-width: 769px) {
    #mobile-menu-overlay { display: none; }
}

/* ==========================================================================
   HERO & BACKGROUND DESIGN (Balanced Dark Rose Overlay)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Naglagay ng padding sa taas para hindi matakpan ng fixed header ang content */
    padding-top: 100px; 
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* - rgba(94, 38, 51, 0.72): Mas mayaman at matingkad na berry-pink tint para buhay na buhay ang kulay sa text area.
       - rgba(48, 18, 25, 0.85): Warm deep plum-rose sa dulo para balance ang dark contrast nang hindi nagmumukhang madilim o creepy.
    */
    background: radial-gradient(circle at 25% 50%, rgba(94, 38, 51, 0.72) 0%, rgba(48, 18, 25, 0.85) 100%);
    z-index: 1;
}

/* ==========================================================================
   MODERN NAVBAR & NAVIGATION (Pink Hover with Dark Text)
   ========================================================================== */
header {
    position: fixed; /* Mananatiling nakapako habang nag-scroll */
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* Para manatiling sentro ang max-width container */
    z-index: 100; /* Siguradong nasa ibabaw ng lahat ng sections */
    width: 100%;
    max-width: 1400px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* Tinanggal ang background at blur para walang gray o madilim na kahon sa simula */
    background-color: transparent; 
    backdrop-filter: none; 

    /* Swabeng transition para sa paglitaw ng kulay at pagbabago ng padding */
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* ==========================================================================
   ANG BAGONG DAGDAG: Lalabas lang ito kapag nag-scroll ka pababa
   ========================================================================== */
header.scrolled {
    background-color: #8d3f4f; /* Iyong Dark Pink / Berry color para visible sa puti */
    padding: 15px 40px; /* Medyo liliit nang kaunti ang taas para mas eleganteng tingnan */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow para lutang sa background */
    border-radius: 0 0 20px 20px; /* Opsyonal: Swabeng kurbada sa ilalim ng navbar niyo */
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(229, 184, 66, 0.35));
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--pink-pastel);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative; /* Kritikal ito para dito kumapit ang underline natin */
    transition: color 0.25s ease;
}

/* Gumagawa ng custom underline sa ilalim ng text */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;                 /* Kapal ng underline line mo */
    bottom: -6px;                /* Distansya o awang mula sa teksto */
    left: 0;
    background-color: var(--hover-pink-bg); /* Gagamit ng soft pink hover color mo */
    
    /* Animation settings para sa left-to-right slide */
    transform: scaleX(0);        /* Nakatago (0 width) sa simula */
    transform-origin: bottom left; /* Dito nanggagaling ang animation (sa kaliwa) */
    transition: transform 0.3s ease-out; /* Dito kontrolado kung gaano ka-smooth ang gapang */
}

/* Pag tinapat ang mouse (hover), gagapang na pakanan ang linya */
.nav-links a:hover::after {
    transform: scaleX(1);        /* Mag-eexpand sa buong haba ng salita */
}

/* Kasabay ng linya, magpapalit din ang kulay ng mismong font */
.nav-links a:hover {
    color: var(--hover-pink-bg);
}

/* Book a Consultation Button (Pink Hover State & Dark Text) */
.nav-cta-btn {
    background-color: transparent;
    color: #f7dcd1; /* Premium Light Gold */
    border: 2px solid var(--hover-pink-border);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 184, 66, 0.2);
}

.nav-cta-btn:hover {
    background-color: #f3b0bc; /* Soft Rose Pink pa rin sa hover */
    border-color: #e29ba7;
    color: #1c0e11; /* Dark Text para sa malinis na contrast */
    box-shadow: 0 4px 15px rgba(243, 176, 188, 0.5);
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO CONTENT AREA (High Contrast Text)
   ========================================================================== */
.hero-content-container {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 80px 40px;
}

.hero-text-box {
    max-width: 680px;
    text-align: left;
}

.hero-tagline {
    color: var(--hover-pink-border); /* Soft Gold Tagline */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

h1 {
    font-family: 'Cinzel', serif;
    color: #ffffff; /* Purong puti para sa pinakamalinaw at pinakamalinis na pagbasa */
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

h1 span {
    color: var(--hover-pink-border); /* Light Gold Secondary Title Text */
    display: block;
    font-size: 2.2rem;
    margin-top: 5px;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.intro-p {
    color: #e6ccd2; /* Light dusty pink font para swabe at hindi masakit sa mata basahin */
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 40px;
}

/* ==========================================================================
   CALL TO ACTION BUTTONS
   ========================================================================== */
.cta-actions {
    display: flex;
    gap: 20px;
}

/* Main Gold Button - Soft Pink sa hover na may Dark Font */
.btn-main {
    background: var(--hover-pink-bg);
    color: #140a0c; /* Madilim na teksto sa ibabaw ng ginto */
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(229, 184, 66, 0.3);
    box-shadow: 0 4px 12px rgba(229, 184, 66, 0.3);
    transition: all 0.3s ease;
}

.btn-main:hover {
    background: #f3b0bc; /* Palit sa Soft Pink */
    color: #1c0e11; /* Nanatiling Dark Text */
    border-color: #e29ba7;
    box-shadow: 0 6px 18px rgba(243, 176, 188, 0.5);
    transform: translateY(-2px);
}

/* Outline Button - Nagiging Solid Soft Pink din sa hover */
.btn-outline {
    background-color: rgba(255, 255, 255, 0.04);
    color: #f7dcd1;
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 1px solid rgba(247, 220, 209, 0.4);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f3b0bc; /* Soft Pink Background */
    border-color: #e29ba7;
    color: #1c0e11; /* Dark Text */
    transform: translateY(-2px);
}

/* Responsive Setting */
@media (max-width: 991px) {
    h1 { font-size: 2.8rem; }
    h1 span { font-size: 1.8rem; }
    .nav-links { display: none; }
}

/* ==========================================================================
   ABOUT US SECTION (Premium Pastel Pink Theme)
   ========================================================================== */
/* ==========================================================================
   ABOUT US SECTION (Aesthetic Pink Theme & Perfect Alignment)
   ========================================================================= */
.about-section {
    background-color: #fcebee; /* Pastel Pink Background */
    padding: 100px 40px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Balanced 2-column view */
    gap: 80px;
    align-items: start;
}

/* --- KALIWANG BAHAGI: Naka-sticky ang buong content bloc kabilang ang pic --- */
.about-left-sticky {
    position: sticky;
    top: 40px;
    height: max-content;
    display: flex;
    flex-direction: column;
}

.about-tagline {
    color: #a88134; /* Soft Gold */
    font-size: 2.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-left-sticky h2 {
    font-family: 'Cinzel', serif;
    color: #2b1419;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-left-sticky h2 span {
    color: #a88134;
    font-weight: 300;
}

.founder-credit {
    font-size: 1.15rem;
    color: #5c3b43;
    margin-bottom: 40px; /* Sapat na awang bago magsimula ang larawan sa baba */
}

.founder-credit strong {
    color: #2b1419;
    border-bottom: 2px solid #e29ba7;
    padding-bottom: 3px;
}

/* --- ANG LARAWAN: Swabe at selyado sa ilalim ng text nang walang overlap --- */
.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px; /* Nilimitahan ang lapad para hindi maging dambuhala */
    aspect-ratio: 2 / 3; /* Portait Orientation (Mas lamang ang taas) */
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(43, 20, 25, 0.12);
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

/* Inayos ang Gold Frame: Ginawang inset/outline border sa loob mismo ng image box */
/* para hindi ito tatagos o mag-o-overlap palabas ng grid border mo */
.image-gold-frame {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #c5a059;
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
}

/* --- KANANG BAHAGI: Ang mga Teksto at Manifesto --- */
.about-content-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-lead {
    font-size: 1.70rem;
    line-height: 1.6;
    color: #2b1419;
    font-weight: 500;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a2d34;
}

.for-whom-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.for-item {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 15px 20px;
    border-left: 3px solid #c5a059;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    color: #2b1419;
    font-weight: 600;
}

.beliefs-box {
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px dashed rgba(197, 160, 89, 0.4);
    padding: 30px;
    border-radius: 6px;
}

.beliefs-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #2b1419;
    margin-bottom: 15px;
}

.beliefs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.beliefs-list li {
    font-size: 1.2rem;
    color: #4a2d34;
    position: relative;
    padding-left: 25px;
}

.beliefs-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #a88134;
}

.about-footer-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.survival-text {
    font-size: 1.4rem;
    border-top: 1px solid rgba(74, 45, 52, 0.15);
    padding-top: 25px;
}

.survival-text strong {
    color: #a88134;
}

.manifesto-quote {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    line-height: 1.4;
    color: #2b1419;
    border-left: 4px solid #f3b0bc;
    padding-left: 25px;
    font-style: italic;
    margin-top: 15px;
}

.manifesto-quote span {
    display: block;
    font-weight: bold;
    color: #a88134;
    margin-top: 5px;
    font-style: normal;
}

/* ==========================================================================
   RESPONSIVE SETTINGS
   ========================================================================= */
@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr; /* Single column flow on smaller screens */
        gap: 50px;
    }
    .about-left-sticky {
        position: relative;
        top: 0;
    }
    .about-image-wrapper {
        margin: 0 auto;
    }
    .about-left-sticky h2 {
        font-size: 2.8rem;
    }
}

/* Investors Container Layout */
/* Container */
/* 1. Main Section Wrapper - Dito nanggagaling ang space sa taas at baba */
.investor-section {
    padding: 80px 20px; /* 80px top/bottom, 20px left/right */
    background-color: var(--text-muted); /* Background ng buong section */
}

/* 2. Grid Layout */
.investor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; /* Mas malaking gap para hindi dikit-dikit */
    max-width: 900px;
    margin: 0 auto;
}

/* 3. Card Styling */
.investor-card {
    border: 4px solid #c5a059;
    border-radius: 12px;
    padding: 8px;
    background: #2b1419;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Nilalagyan natin ng base height */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.investor-card:hover {
    transform: scale(1.02); /* Light animation */
}

.investor-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* 4. Responsive - Mobile */
@media (max-width: 600px) {
    .investor-grid { 
        grid-template-columns: 1fr; /* 1 column sa mobile */
        gap: 25px; 
    }
    .investor-card {
        min-height: 200px; /* Adjust sa mobile */
    }
}

/* 5. Button Container (Spacing at Alignment) */
.investor-cta { 
    text-align: center; 
    margin-top: 60px; /* Space sa pagitan ng cards at button */
}

.invest-btn-main {
    padding: 18px 50px;
    background-color: #c5a059;
    color: #2b1419;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.invest-btn-main:hover {
    background-color: #d4b06a;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}
/* ==========================================================================
   AWARDS & RECOGNITION SECTION (Carousel)
   ========================================================================== */
.awards-section {
    background-color: var(--hover-pink-bg); /* Mas light na pink para may contrast sa About Us */
    padding: 100px 40px;
    text-align: center;
}

.awards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-header {
    margin-bottom: 50px;
}

.awards-tagline {
    color: #a88134; /* Soft Gold */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.awards-header h2 {
    font-family: 'Cinzel', serif;
    color: #2b1419;
    font-size: 4rem;
    margin-bottom: 15px;
}

.awards-header h2 span {
    color: #a88134;
}

.awards-header p {
    color: #4a2d34;
    font-size: 1.3rem;
}

/* --- CAROUSEL STYLES --- */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Mahalaga: Maglagay ng space sa gilid para hindi sumayad ang images sa buttons */
    padding: 0 60px; 
    box-sizing: border-box;
}

.carousel-track-container {
    width: 85%;
    overflow: hidden;
    border-radius: 8px;
    border: none; /* DITO: Tanggalin ang border */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.5s ease-in-out;
}

.carousel-track {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.5s ease-in-out; /* Swabeng slide animation */
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Space sa pagitan ng border at image */
}
.slide-content-wrapper {
    border: 3px solid #c5a059;
    border-radius: 8px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    line-height: 0;
    overflow: hidden;
    max-width: 100%; /* Idagdag ito para hindi lumampas sa screen ang frame */
}
.carousel-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
}

/* --- PREV & NEXT BUTTONS --- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2b1419;
    color: #c5a059;
    border: 2px solid #c5a059; /* Dinagdagan natin ng border para mas kitang-kita */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20; /* Siguradong mas mataas sa images */
}

.carousel-btn:hover {
    background-color: #c5a059;
    color: #2b1419;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Kapag nasa dulo na at hindi na mapindot */
.carousel-btn:disabled {
    background-color: #e5d5d8;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
}
.carousel-dots {
    display: none; 
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* 2. Style ng mga tuldok (Mananatili ito) */
.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active { 
    background: #c5a059;
}
@media (max-width: 767px) {
    .awards-header h2 { font-size: 2.2rem; }
    
    /* 1. I-hide ang lumang buttons sa mobile */
    .carousel-btn { 
        display: none !important; 
    }
    .carousel-wrapper {
        padding: 0 !important;
    }
    /* 2. Gawin itong swipeable (scroll-snap) */
    .carousel-track-container {
        width: 100% !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track {
        display: flex;
        flex-direction: row;
        width: 100%;
    }
    .carousel-dots {
        display: flex; /* Dito lang sila lilitaw */
    }
    .slide-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        border: 3px solid #c5a059;
        border-radius: 12px;
        overflow: hidden;
    }

    .carousel-slide img {
        display: block;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: contain;
    }
    .carousel-slide {
        min-width: 100%;
        padding: 0 10px !important;
        box-sizing: border-box;
    }

}

.achievements-section {
    padding: 80px 40px;
    background-color: #2b1419; /* Dark Background para mas lutang ang Gold */
    text-align: center;
}

.achievements-container h2 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.achievements-container h2 span {
    color: #c5a059; /* Gold */
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card {
    border: 2px solid #c5a059; /* Gold Border */
    border-radius: 12px;
    padding: 25px;
    background: rgba(197, 160, 89, 0.05); /* Napaka-light na gold tint */
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(197, 160, 89, 0.1);
}

.achievement-card p {
    color: #c5a059; /* Gold Text */
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}
/*Product Section */
.product-section {
    padding: 80px 40px;
    background-color: var(--pink-pastel); /* Light pink background */
    text-align: center;
}
.product-header h2{
    color: var(--gold-primary);
    font-size: 40px;
}
.product-header p{
    color: #4a2d34;
    font-size: 1.2rem;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Dito natin ginawa ang 3 columns per row */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns */
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    border: 2px solid #c5a059;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    
    /* PANG-ALIGNMENT NG BUTTON */
    display: flex;
    flex-direction: column; 
    height: 100%; /* Para maging pantay ang height ng lahat ng cards */
}
.order-btn {
    margin-top: auto; 
    display: inline-block;
    padding: 12px 25px;
    background-color: #2b1419;
    color: #c5a059;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #c5a059;
    margin-top: 20px; /* Dagdag na space mula sa description */
}

.order-btn:hover {
    background-color: #c5a059;
    color: #2b1419;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Square images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #2b1419;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.product-card p {
    color: #4a2d34;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Mobile Responsive */
/* Mobile-first product grid behavior */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* Desktop/tablet: 3 columns */
    }
}

.video-section {
    padding: 80px 40px;
    background-color: #fcf1f3; /* Bagay sa theme mo */
    text-align: center;
}

.video-container {
    max-width: 900px; /* Mas maliit nang konti para focus sa video */
    margin: 0 auto;
}

.video-header h2 {
    font-family: 'Cinzel', serif;
    color: #2b1419;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.video-header h2 span {
    color: #c5a059; /* Gold */
}

/* --- Ang Gold Bordered Container --- */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Standard cinematic ratio */
    border: 4px solid #c5a059; /* Makapal na gold border */
    border-radius: 12px;
    overflow: hidden; /* Para sumunod ang video sa rounded corners */
    box-shadow: 0 15px 35px rgba(43, 20, 25, 0.2);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.reveal {
    opacity: 0;
    transform: translateY(20px); /* Konting slide lang para hindi halata */
    transition: opacity 0.8s ease, transform 0.4s ease; /* Mabilis na animation */
    /* HINDI na natin gagamitin ang visibility: hidden; */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.contact-section{
    background: var(--shadow-pink-glow);
    padding: 100px 8%;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    max-width:1400px;
    margin:auto;
}

.contact-tag{
    display:block;
    color:var(--gold-primary);
    font-size:1rem;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.contact-info h2{
    font-size:4rem;
    line-height:1.1;
    color:var(--text-primary);
    margin-bottom:25px;
}

.contact-info h2 span{
    color:var(--gold-primary);
}

.contact-info > p{
    color:var(--text-muted);
    line-height:1.8;
    margin-bottom:50px;
    max-width:600px;
}

.info-list{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
}

.icon{
    color:var(--gold-primary);
    font-size:1.8rem;
    min-width:40px;
}

.info-item h4{
    color:var(--text-primary);
    margin-bottom:8px;
}

.info-item p{
    color:var(--text-secondary);
    line-height:1.7;
}

.contact-form h3{
    color:var(--gold-primary);
    font-size:2rem;
    margin-bottom:15px;
}

.contact-form > p{
    color:var(--text-muted);
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(229,184,66,0.25);
    color:var(--text-primary);
    padding:18px;
    margin-bottom:15px;
    border-radius:8px;
    font-size:1rem;
    transition:.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--gold-primary);
    box-shadow:0 0 15px var(--shadow-gold);
}

.contact-form textarea{
    min-height:180px;
    resize:vertical;
}

.contact-form select{
    cursor:pointer;
}

.contact-form option{
    background:#1c0e11;
    color:#fff;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:var(--text-secondary);
    margin-bottom:25px;
    font-size:.95rem;
}

.checkbox input{
    width:auto;
    margin-top:4px;
}
select optgroup {
    color: var(--gold-primary) !important;
    background: #1c0e11 !important;
    font-weight: 700 !important;
}
.contact-form button{
    background:transparent;
    border:2px solid var(--gold-primary);
    color:var(--text-primary);
    padding:16px 40px;
    font-weight:700;
    cursor:pointer;
    border-radius:8px;
    transition:.3s;
}

.contact-form button:hover{
    background:var(--gold-primary);
    color:var(--text-dark-contrast);
    box-shadow:0 0 20px var(--shadow-gold);
}
#dynamicFields{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:15px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

@media (max-width:768px){
    .form-row{
        grid-template-columns:1fr;
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .contact-info h2{
        font-size:3rem;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .contact-section{
        padding:80px 25px;
    }

    .contact-info h2{
        font-size:2.5rem;
    }

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

    .contact-form button{
        width:100%;
    }

    .contact-form h3{
        font-size:1.8rem;
    }
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-section{
    padding:100px 8%;
    background:
    radial-gradient(circle at top,
    #3b0912,
    #140207);
}

.section-headerS{
    text-align:center;
    margin-bottom:70px;
}

.section-headerS h2{
    font-size:clamp(2rem,5vw,3.5rem);
    color:var(--text-primary);
    margin-bottom:15px;
}

.section-headerS h2 span{
    color:#d8ab38;
}

.section-headerS p{
    max-width:700px;
    margin:auto;
    color:#ffffff;
    line-height:1.7;
}

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

.service-card{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:30px;
    text-align:center;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    color:white;
    font-size:2rem;
    margin-bottom:25px;
}

.service-card h3 span{
    color:#d8ab38;
}

.image-wrapper{
    position:relative;
    width:100%;
}

.image-wrapper img{
    width:100%;
    max-width:320px;
    display:block;
    margin:auto;
    border-radius:18px;
    box-shadow:
    0 20px 40px rgba(0,0,0,.4);
}

.expand-btn{
    position:absolute;
    top:12px;
    right:calc(50% - 160px + 12px);

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:#d8ab38;
    color:#000;

    font-size:1.2rem;
    font-weight:700;
    cursor:pointer;

    transition:.3s;
}

.expand-btn:hover{
    transform:scale(1.1);
}

.details-btn{
    display:inline-block;
    margin-top:25px;

    background:#d8ab38;
    color:#000;

    padding:12px 28px;
    border-radius:50px;

    text-decoration:none;
    font-weight:700;
}

.service-footer{
    text-align:center;
    margin-top:70px;
}

.book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:240px;
    height:65px;

    background:#d8ab38;
    color:#000;

    text-decoration:none;
    font-weight:700;
    font-size:1.1rem;

    border-radius:60px;

    transition:.3s;
}

.book-btn:hover{
    transform:translateY(-5px);
}

/* MODAL */

.promo-modal{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;
    z-index:9999;

    padding:20px;
}

.promo-modal.active{
    opacity:1;
    visibility:visible;
}

.modal-content{
    position:relative;

    width:min(900px,100%);
    max-height:90vh;

    overflow:auto;

    background:#1a060c;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:25px;
}

.modal-content img{
    width:100%;
    border-radius:18px;
    display:block;
}

.close-modal{
    position:absolute;
    top:15px;
    right:15px;

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:#d8ab38;
    color:#000;

    font-size:1.5rem;
    cursor:pointer;
}

.modal-body{
    padding-top:25px;
    text-align:center;
}

.modal-body h3{
    color:#fff;
    margin-bottom:10px;
}

.modal-body p{
    color:#ddd;
    line-height:1.7;
}

/* TABLET */

@media (max-width:900px){

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

}

/* MOBILE */

@media (max-width:600px){

    .services-section{
        padding:70px 20px;
    }

    .service-card{
        padding:20px;
    }

    .service-card h3{
        font-size:1.6rem;
    }

    .image-wrapper img{
        max-width:100%;
    }

    .expand-btn{
        right:12px;
    }

    .book-btn{
        width:100%;
        max-width:320px;
    }
}

/* ==========================================================================
   Feedbacks Section
   ========================================================================== */
.feedbacks-section{
    padding:100px 5%;
    background:#f8f5f4;
}

.feedbacks-section .container{
    max-width:1300px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header .subtitle{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(227,177,50,.15);
    color:#dca628;
    font-weight:600;
    margin-bottom:15px;
}

.section-header h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#231f20;
    margin-bottom:15px;
}

.section-header p{
    color:#777;
    max-width:600px;
    margin:auto;
    line-height:1.7;
}

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

.feedback-card{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s ease;
}

.feedback-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.feedback-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(227,177,50,.18),
        rgba(255,123,172,.18)
    );
    pointer-events:none;
}

.feedback-img{
    padding:15px;
}

.feedback-img img{
    width:100%;
    display:block;
    border-radius:16px;
}

.feedback-btn{
    text-align:center;
    margin-top:60px;
}

.feedback-btn a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    background:#e3b132;
    color:#000;
    font-weight:700;
    transition:.3s;
}

.feedback-btn a:hover{
    transform:translateY(-3px);
    background:#d8a528;
}
.feedback-image{
    width:100%;
    display:block;
    cursor:pointer;
}

.feedback-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:99999;

    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
}

.feedback-modal.active{
    opacity:1;
    visibility:visible;
    display:flex;
}

.feedback-modal img{
    max-width:90%;
    max-height:90vh;
    border-radius:20px;
    animation:zoomIn 0.3s ease;
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Tablet */
@media (max-width:991px){

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

}

/* Mobile */
@media (max-width:600px){

    .feedbacks-section{
        padding:80px 20px;
    }

    .feedback-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feedback-btn a{
        width:100%;
        max-width:280px;
    }

}