/* ==========================================================
   CBC CONSEGUIRS
   style.css - PART 1
========================================================== */

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   ROOT
========================= */

:root{

    --primary:#184D47;
    --secondary:#C8A34D;
    --light:#F8F6F1;
    --white:#ffffff;
    --dark:#1b1b1b;
    --text:#555;
    --border:#e8e8e8;

    --radius:12px;

    --transition:.35s ease;

    --shadow:0 15px 35px rgba(0,0,0,.10);

}

/* =========================
   RESET
========================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

}

button{

    font-family:'Poppins',sans-serif;

}

section{

    padding:100px 0;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/* =========================
   HEADINGS
========================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:15px;

    font-weight:700;

}

.section-title p{

    color:var(--text);

    font-size:18px;

}

/* =========================
   HEADER
========================= */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:70px;

    width:auto;

}

nav ul{

    display:flex;

    gap:40px;

}

nav ul li a{

    color:var(--dark);

    font-weight:500;

    transition:var(--transition);

    position:relative;

}

nav ul li a:hover{

    color:var(--primary);

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

.enquiry-btn{

    padding:13px 30px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.enquiry-btn:hover{

    background:var(--secondary);

}

.mobile-menu{

    display:none;

    font-size:30px;

    cursor:pointer;

}

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    color:#fff;

    background:url("../assets/hero/hero.jpg") center center/cover no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:720px;

}

.hero-content h3{

    letter-spacing:5px;

    color:var(--secondary);

    margin-bottom:20px;

    font-weight:500;

}

.hero-content h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-content h2{

    font-size:34px;

    font-weight:400;

    margin-bottom:25px;

}

.hero-content p{

    font-size:19px;

    margin-bottom:40px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    background:var(--secondary);

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.primary-btn:hover{

    background:var(--primary);

}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;

    padding:16px 38px;

    border-radius:50px;

    transition:var(--transition);

}

.secondary-btn:hover{

    background:#fff;

    color:var(--primary);

}

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    font-size:32px;

    animation:float 2s infinite;

}

/* =========================
   ABOUT
========================= */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:18px;

    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:25px;

}

.about-content p{

    color:var(--text);

    margin-bottom:20px;

}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.highlight{

    background:#fff;

    border-radius:12px;

    padding:18px;

    box-shadow:var(--shadow);

    font-weight:600;

}

.highlight span{

    color:green;

    margin-right:10px;

}

/* =========================
   PRODUCTS
========================= */

.product-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.product-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    height:320px;

    object-fit:cover;

}

.product-content{

    padding:35px;

}

.product-content h3{

    font-size:30px;

    color:var(--primary);

    margin-bottom:15px;

}

.product-content p{

    margin-bottom:25px;

    color:var(--text);

}

.product-content ul{

    margin-bottom:25px;

}

.product-content ul li{

    margin-bottom:10px;

    color:var(--text);

}

.product-content a{

    color:var(--primary);

    font-weight:600;

}
/* ==========================================================
   STYLE.CSS - PART 2
========================================================== */

/* =========================
   COMPANY STATS
========================= */

#stats{

    background:var(--primary);

    color:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    padding:40px 20px;

}

.stat-box h2{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:10px;

    font-weight:700;

}

.stat-box p{

    color:#fff;

    font-size:18px;

}

/* =========================
   WHY US
========================= */

#why{

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:var(--light);

    padding:40px;

    border-radius:16px;

    text-align:center;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.why-card:hover{

    transform:translateY(-12px);

    background:var(--primary);

    color:#fff;

}

.why-card:hover h3{

    color:#fff;

}

.why-card:hover p{

    color:#f2f2f2;

}

.icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:var(--secondary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin:auto;

    margin-bottom:25px;

}

.why-card h3{

    margin-bottom:15px;

    color:var(--primary);

    transition:.3s;

}

.why-card p{

    color:var(--text);

    transition:.3s;

}

/* =========================
   EXPORT
========================= */

#export{

    position:relative;

    background:url("../assets/export/export-bg.jpg") center/cover no-repeat;

    color:#fff;

}

#export .overlay{

    position:absolute;

    inset:0;

    background:rgba(24,77,71,.85);

}

#export .container{

    position:relative;

    z-index:2;

}

.light h2{

    color:#fff;

}

.light p{

    color:#ddd;

}

.export-process{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:20px;

    margin-top:50px;

}

.step{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.2);

    padding:35px 20px;

    text-align:center;

    border-radius:14px;

    backdrop-filter:blur(8px);

    transition:.3s;

}

.step:hover{

    background:var(--secondary);

    transform:translateY(-8px);

}

.step h3{

    color:#fff;

    font-size:20px;

}

/* =========================
   PACKAGING
========================= */

#packaging{

    background:var(--light);

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.package-card{

    background:#fff;

    border-radius:16px;

    text-align:center;

    padding:45px 25px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.package-card:hover{

    transform:translateY(-12px);

}

.package-card h3{

    font-size:36px;

    color:var(--primary);

    margin-bottom:15px;

}

.package-card p{

    color:var(--text);

}

/* =========================
   GALLERY
========================= */

#gallery{

    background:#fff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}

.gallery-grid img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:14px;

    cursor:pointer;

    transition:.4s;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:scale(1.05);

}

/* =========================
   TESTIMONIAL
========================= */

#testimonial{

    background:var(--primary);

    color:#fff;

}

.testimonial-box{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.testimonial-box h2{

    color:#fff;

    font-size:42px;

    margin-bottom:25px;

}

.testimonial-box p{

    font-size:22px;

    line-height:1.9;

    color:#eee;

    margin-bottom:25px;

}

.testimonial-box span{

    color:var(--secondary);

    font-weight:600;

    font-size:18px;

}
/* ==========================================================
   STYLE.CSS - PART 3
========================================================== */

/* =========================
   CONTACT
========================= */

#contact{

    background:var(--light);

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}

.contact-info{

    background:#fff;

    padding:45px;

    border-radius:16px;

    box-shadow:var(--shadow);

}

.contact-info h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:10px;

}

.tagline{

    color:var(--secondary);

    font-weight:600;

    margin-bottom:35px;

}

.info-box{

    margin-bottom:28px;

}

.info-box h4{

    color:var(--primary);

    margin-bottom:10px;

    font-size:20px;

}

.info-box p{

    color:var(--text);

    line-height:1.8;

}

.info-box a{

    color:var(--primary);

    transition:.3s;

}

.info-box a:hover{

    color:var(--secondary);

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    padding:12px 20px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    transition:.3s;

    font-size:15px;

}

.social-links a:hover{

    background:var(--secondary);

}

/* =========================
   CONTACT FORM
========================= */

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:16px;

    box-shadow:var(--shadow);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form select,

.contact-form textarea{

    width:100%;

    padding:18px;

    border:1px solid var(--border);

    border-radius:10px;

    outline:none;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

}

.contact-form button{

    border:none;

    cursor:pointer;

}

/* =========================
   LOCATION
========================= */

#location{

    background:#fff;

}

.map-placeholder{

    background:var(--primary);

    color:#fff;

    text-align:center;

    padding:80px 30px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.map-placeholder h3{

    font-size:36px;

    color:var(--secondary);

    margin-bottom:20px;

}

.map-placeholder p{

    color:#fff;

    font-size:18px;

    margin-bottom:8px;

}

/* =========================
   FOOTER
========================= */

footer{

    background:#122B28;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:40px;

}

.footer-column h3{

    color:var(--secondary);

    margin-bottom:20px;

    font-size:24px;

}

.footer-column p{

    color:#d5d5d5;

    margin-bottom:12px;

    line-height:1.8;

}

.footer-column ul{

    padding:0;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#d5d5d5;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:var(--secondary);

    padding-left:8px;

}

footer hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.15);

    margin:30px 0;

}

.copyright{

    text-align:center;

}

.copyright p{

    color:#bdbdbd;

}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:95px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 12px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

.whatsapp-float img{

    width:36px;

    height:36px;

}

/* =========================
   BACK TO TOP
========================= */

#topBtn{

    position:fixed;

    right:25px;

    bottom:20px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:none;

    transition:.3s;

    box-shadow:var(--shadow);

    z-index:999;

}

#topBtn:hover{

    background:var(--primary);

}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-navigation{

    position:fixed;

    top:90px;

    left:-100%;

    width:280px;

    height:100vh;

    background:#fff;

    box-shadow:var(--shadow);

    padding:40px 25px;

    display:flex;

    flex-direction:column;

    gap:20px;

    transition:.4s;

    z-index:998;

}

.mobile-navigation.active{

    left:0;

}

.mobile-navigation a{

    color:var(--primary);

    font-size:18px;

    font-weight:600;

}

/* =========================
   ANIMATIONS
========================= */

@keyframes float{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,-12px);

    }

    100%{

        transform:translate(-50%,0);

    }

}

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
/* ==========================================================
   STYLE.CSS - PART 4 (Responsive + Utilities)
========================================================== */

/* =========================
   TABLETS
========================= */

@media(max-width:1200px){

    .hero-content h1{

        font-size:58px;

    }

    .hero-content h2{

        font-size:30px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .export-process{

        grid-template-columns:repeat(3,1fr);

    }

}

/* =========================
   SMALL LAPTOPS
========================= */

@media(max-width:992px){

    nav{

        display:none;

    }

    .mobile-menu{

        display:block;

    }

    .hero{

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero-content h1{

        font-size:50px;

    }

    .hero-content h2{

        font-size:28px;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .product-grid{

        grid-template-columns:1fr;

    }

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .package-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    section{

        padding:70px 0;

    }

    .navbar{

        height:80px;

    }

    .logo img{

        height:58px;

    }

    .hero{

        min-height:100vh;

    }

    .hero-content h3{

        font-size:15px;

        letter-spacing:3px;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content h2{

        font-size:24px;

    }

    .hero-content p{

        font-size:17px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .primary-btn,

    .secondary-btn{

        width:100%;

        text-align:center;

    }

    .section-title h2{

        font-size:34px;

    }

    .about-content h3{

        font-size:28px;

    }

    .about-highlights{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .export-process{

        grid-template-columns:1fr;

    }

    .package-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .gallery-grid img{

        height:240px;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:480px){

    .container{

        width:92%;

    }

    .hero-content h1{

        font-size:34px;

    }

    .hero-content h2{

        font-size:20px;

    }

    .hero-content p{

        font-size:16px;

    }

    .section-title h2{

        font-size:28px;

    }

    .product-content{

        padding:25px;

    }

    .product-content h3{

        font-size:24px;

    }

    .contact-info,

    .contact-form{

        padding:25px;

    }

    .map-placeholder{

        padding:50px 20px;

    }

}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/* =========================
   TEXT SELECTION
========================= */

::selection{

    background:var(--secondary);

    color:#fff;

}

/* =========================
   IMAGE HOVER EFFECT
========================= */

img{

    transition:.35s ease;

}

.product-card:hover img,

.gallery-grid img:hover,

.about-image:hover img{

    transform:scale(1.05);

}

/* =========================
   SMOOTH CARD EFFECT
========================= */

.product-card,

.why-card,

.package-card,

.highlight,

.contact-info,

.contact-form{

    transition:.35s ease;

}

.product-card:hover,

.why-card:hover,

.package-card:hover,

.highlight:hover,

.contact-info:hover,

.contact-form:hover{

    transform:translateY(-8px);

}

/* =========================
   INPUT PLACEHOLDERS
========================= */

::placeholder{

    color:#999;

    font-size:15px;

}

/* =========================
   END OF STYLE.CSS
========================================================== */