/* public/css/site.css */
:root{
    --orange:#E2690A;
    --orange-dark:#C85A08;
    --dark:#1B1B1B;
    --gray-text:#5F6368;
    --bg-light:#F8F7F5;
    --teal:#00B4A6;
    --badge-teal:#1E3D2E;
    --badge-green:#2F6B45;
    --border:#EDEBE5;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',sans-serif;color:var(--dark);line-height:1.5;background:#fff;}
h1,h2,h3,h4{font-family:'Montserrat',sans-serif;letter-spacing:-.3px;}
.logo-text{font-family:'Montserrat',sans-serif;}
.btn{font-family:'Inter',sans-serif;letter-spacing:.3px;}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.container{max-width:1200px;margin:0 auto;padding:0 24px;}
.eyebrow{color:var(--orange);font-weight:600;letter-spacing:1.5px;font-size:13px;text-transform:uppercase;}
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 26px;border-radius:6px;font-weight:600;font-size:14px;cursor:pointer;border:1px solid transparent;transition:.2s;}
.btn-primary{background:var(--orange);color:#fff;}
.btn-primary:hover{background:var(--orange-dark);}
.btn-outline{background:#fff;color:var(--dark);border-color:#E0DED8;}
.btn-outline:hover{border-color:var(--dark);}
.btn i{font-size:13px;}

/* Header */
header{border-bottom:1px solid var(--border);position:sticky;top:0;background:#fff;z-index:50;}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;}

/* Logo */
.logo{display:flex;align-items:center;gap:10px;}
.logo-mark{width:40px;height:40px;flex-shrink:0;}
.logo-text-wrap{display:flex;flex-direction:column;line-height:1.15;}
.logo-text{font-weight:800;font-size:22px;letter-spacing:.5px;color:var(--dark);}
.logo-text span{color:var(--orange);}
.logo-sub{font-size:9.5px;color:var(--gray-text);letter-spacing:1px;text-transform:uppercase;font-weight:600;margin-top:2px;}

nav ul{display:flex;gap:30px;align-items:center;}
nav a{font-size:14px;font-weight:500;color:var(--dark);display:flex;align-items:center;gap:6px;white-space:nowrap;}
/* nav a.active{color:var(--orange);border-bottom:2px solid var(--orange);padding-bottom:4px;} */
nav a i{font-size:11px;}

/* Hero */
.hero{position:relative;background:var(--bg-light);overflow:hidden;min-height:600px;display:flex;align-items:center;}
.hero-media{position:absolute;top:0;right:0;bottom:0;width:60%;z-index:1;}
.hero-media img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-media::before{content:'';position:absolute;inset:0;background:linear-gradient(to right, var(--bg-light) 0%, rgba(248,247,245,0.85) 8%, rgba(248,247,245,0) 30%);}
.hero-copy{padding:60px 0;position:relative;z-index:2;max-width:560px;}
.hero-copy h1{font-size:48px;line-height:1.12;font-weight:800;margin:14px 0 18px;}
.hero-copy h1 .accent{color:var(--orange);}
.hero-copy .rule{width:70px;height:4px;background:var(--orange);margin:0 0 20px;}
.hero-copy p{color:var(--gray-text);font-size:16px;max-width:420px;margin-bottom:28px;}
.hero-cta{display:flex;gap:14px;margin-bottom:44px;}

.hero-badges{display:flex;gap:30px;flex-wrap:wrap;}
.hero-badge{display:flex;flex-direction:column;align-items:center;text-align:center;gap:10px;font-size:11.5px;font-weight:700;max-width:88px;letter-spacing:.2px;}
.hero-badge .icon-circle{width:44px;height:44px;border-radius:50%;border:1.5px solid var(--orange);background:transparent;display:flex;align-items:center;justify-content:center;}
.hero-badge .icon-circle i{color:var(--orange);font-size:17px;}
.hero-badge .icon-circle.c-teal{border-color:var(--teal);}
.hero-badge .icon-circle.c-teal i{color:var(--teal);}
.hero-badge .icon-circle.c-green{border-color:var(--badge-green);}
.hero-badge .icon-circle.c-green i{color:var(--badge-green);}

/* Feature strip */
.feature-strip{background:var(--bg-light);padding:50px 0;border-top:1px solid var(--border);}
.feature-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px;text-align:center;}
.feature-item i{color:var(--orange);font-size:28px;margin-bottom:14px;display:inline-block;}
.feature-item h4{font-size:14px;font-weight:700;text-transform:uppercase;margin-bottom:6px;}
.feature-item p{font-size:12.5px;color:var(--gray-text);}

/* Collections */
.section{padding:80px 0;}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:34px;}
.section-head h2{font-size:30px;font-weight:800;margin-top:8px;}
.section-head .link{font-size:13px;font-weight:600;text-decoration:underline;}
.carousel-nav{display:flex;gap:10px;}
.carousel-nav button{width:34px;height:34px;border-radius:50%;border:1px solid var(--border);background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:12px;color:var(--dark);}
.carousel-nav button.next{background:var(--orange);color:#fff;border-color:var(--orange);}
.collections-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
.collection-card{border:1px solid var(--border);border-radius:8px;overflow:hidden;background:#fff;}
.collection-card img{width:100%;height:225px;object-fit:cover;}
.collection-card .body{padding:16px;}
.collection-card h3{font-size:15px;font-weight:700;margin-bottom:6px;}
.collection-card p{font-size:12.5px;color:var(--gray-text);margin-bottom:10px;min-height:32px;}
.collection-card .explore{font-size:12.5px;font-weight:700;color:var(--orange);display:inline-flex;align-items:center;gap:5px;}
.collection-card .explore i{font-size:10px;}

/* Lifestyle */
.lifestyle{background:var(--bg-light);}
.lifestyle-inner{display:grid;grid-template-columns:.85fr 1.4fr;gap:0;align-items:stretch;}
.lifestyle-copy{padding:60px;display:flex;flex-direction:column;justify-content:center;}
.lifestyle-copy h2{font-size:30px;font-weight:800;margin:10px 0 14px;}
.lifestyle-copy h2 .accent{color:var(--orange);}
.lifestyle-copy p{color:var(--gray-text);margin-bottom:24px;max-width:340px;}
.lifestyle-imgs{display:flex;height:100%;min-height:340px;background:#F8F7F5;}
.lifestyle-imgs .slice{flex:1 1 33.3333%;position:relative;overflow:hidden;}
.lifestyle-imgs .slice:not(:first-child){margin-left:-4%;}
.lifestyle-imgs .slice img{width:100%;height:100%;object-fit:cover;display:block;}
.lifestyle-imgs .slice{clip-path:polygon(12% 0, 100% 0, 88% 100%, 0% 100%);}
.lifestyle-imgs .slice:first-child{clip-path:polygon(10% 0, 100% 0, 88% 100%, 0% 100%);}
.lifestyle-imgs .slice:last-child{clip-path:polygon(12% 0, 100% 0, 100% 100%, 0% 100%);}

/* Stats */
.stats{padding:50px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.stat-item{display:flex;align-items:center;gap:14px;}
.stat-item i{font-size:30px;color:var(--orange);flex-shrink:0;width:34px;}
.stat-item .num{font-size:26px;font-weight:800;line-height:1;}
.stat-item .label{font-size:11.5px;color:var(--gray-text);text-transform:uppercase;font-weight:600;letter-spacing:.3px;}

/* Footer */
footer{background:var(--bg-light);padding:60px 0 20px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;margin-bottom:40px;}
.footer-col h4{font-size:14px;font-weight:700;margin-bottom:18px;text-transform:uppercase;letter-spacing:.4px;}
.footer-col ul li{margin-bottom:10px;font-size:13.5px;color:var(--gray-text);}
.footer-about p{font-size:13.5px;color:var(--gray-text);margin:14px 0 18px;max-width:260px;}
.footer-about .logo-mark{height:34px;width:34px;}
.footer-about .logo-text{font-size:18px;}
.social{display:flex;gap:10px;}
.social a{width:34px;height:34px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);font-size:14px;color:var(--dark);}
.contact-item{display:flex;gap:10px;margin-bottom:14px;font-size:13.5px;color:var(--gray-text);}
.contact-item i{font-size:14px;color:var(--orange);flex-shrink:0;margin-top:2px;width:16px;}
.quote-form input,.quote-form textarea{width:100%;padding:11px 14px;margin-bottom:10px;border:1px solid var(--border);border-radius:6px;font-family:inherit;font-size:13.5px;background:#fff;}
.quote-form button{width:100%;justify-content:center;}
.footer-bottom{border-top:1px solid var(--border);padding-top:20px;display:flex;justify-content:space-between;font-size:12.5px;color:var(--gray-text);}

@media(max-width:1100px){
    nav ul{gap:18px;}
}
@media(max-width:1024px){
    .feature-grid{grid-template-columns:repeat(3,1fr);}
    .collections-grid{grid-template-columns:repeat(2,1fr);}
    .stats-grid{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
    .hero{min-height:auto;}
    .hero-media{position:relative;width:100%;height:280px;order:-1;}
    .hero-copy{max-width:100%;padding-top:20px;}
    nav ul{display:none;}
    .lifestyle-inner{grid-template-columns:1fr;}
    .lifestyle-imgs{flex-direction:column;min-height:auto;}
    .lifestyle-imgs .slice{margin-left:0 !important;height:200px;clip-path:none !important;}
    .lifestyle-imgs .slice img{width:100%;}
}

.about-hero{
    min-height:430px;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.92) 28%,rgba(255,255,255,.45) 52%,rgba(255,255,255,0) 100%),
        url('../images/about-hero.png') center right/cover no-repeat;
    display:flex;
    align-items:center;
}
.about-hero-content{max-width:500px;}
.breadcrumb{font-size:13px;font-weight:700;color:var(--orange);margin-bottom:18px;}
.breadcrumb span{margin:0 10px;color:#999;}
.about-hero h1{font-size:46px;font-weight:900;margin-bottom:12px;}
.about-hero h1 span,.story-content h2 span,.center-head h2 span,.promise-text h2 span{color:var(--orange);}
.orange-line{width:65px;height:4px;background:var(--orange);margin-bottom:18px;}
.about-hero p{font-size:16px;color:#444;line-height:1.8;}

.story-grid{display:grid;grid-template-columns:1fr 1.08fr;gap:80px;align-items:center;}
.story-main{height:430px;width:100%;object-fit:cover;border-radius:8px;}
.story-small-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:14px;margin-top:-95px;padding:0 22px;position:relative;z-index:2;}
.story-small-grid img,.trust-card{height:180px;border-radius:15px;object-fit:cover;border:3px solid #fff;box-shadow:0 12px 30px rgba(0,0,0,.08);}
.trust-card{background:linear-gradient(135deg,#255f38,#12351f);padding:28px 20px;color:#fff;}
.trust-card h4{color:#f6a321;font-size:18px;margin:18px 0 8px;}
.trust-card p{font-size:12px;color:#e6e6e6;}

.story-content h2{font-size:34px;font-weight:900;line-height:1.15;margin:14px 0 20px;}
.story-content>p{color:#4d4d4d;line-height:1.75;margin-bottom:32px;}
.quality-grid{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid #ddd;border-left:1px solid #ddd;}
.quality-item{display:flex;gap:18px;padding:28px 22px;border-right:1px solid #ddd;border-bottom:1px solid #ddd;}
.quality-item i{font-size:30px;color:#2f6b45;}
.quality-item h4{font-size:13px;font-weight:800;margin-bottom:7px;}
.quality-item p{font-size:13px;color:#666;}

.values-section{padding:70px 0;background:#faf9f7;text-align:center;}
.center-head h2{font-size:30px;font-weight:900;margin-top:10px;}
.values-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:35px;margin-top:48px;}
.value-icon{width:76px;height:76px;border-radius:50%;background:#f0efed;margin:0 auto 18px;display:flex;align-items:center;justify-content:center;font-size:26px;color:#2f3b36;}
.value-item h4{font-size:14px;margin-bottom:8px;}
.value-item p{font-size:13px;color:#666;}

.about-stats{
    background:
        linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
        url('../images/stats-bg.png') center/cover no-repeat;
    padding:42px 0;
}
.stats-overlay{display:grid;grid-template-columns:repeat(4,1fr);gap:25px;}
.about-stat{display:flex;align-items:center;gap:18px;color:#fff;border-right:1px solid rgba(255,255,255,.25);}
.about-stat:last-child{border-right:0;}
.about-stat i{font-size:42px;color:#fff;}
.about-stat strong{font-size:34px;color:var(--orange);font-family:'Montserrat',sans-serif;}
.about-stat span{font-size:13px;font-weight:700;line-height:1.3;}

.promise-grid{display:grid;grid-template-columns:.9fr 1.6fr;gap:60px;align-items:center;}
.promise-text h2{font-size:34px;font-weight:900;line-height:1.18;margin:14px 0 22px;}
.promise-text p{color:#555;line-height:1.75;max-width:410px;}
.signature{margin-top:35px;font-weight:800;font-family:'Montserrat',sans-serif;}
.promise-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.promise-card{border:1px solid var(--border);border-radius:6px;overflow:hidden;background:#fff;}
.promise-card img{height:210px;width:100%;object-fit:cover;}
.promise-card div{padding:18px;}
.promise-card h4{font-size:14px;font-weight:900;margin-bottom:8px;}
.promise-card p{font-size:13px;color:#666;}

@media(max-width:900px){
    .story-grid,.promise-grid{grid-template-columns:1fr;gap:40px;}
    .values-grid,.stats-overlay,.promise-cards{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
    .about-hero h1{font-size:34px;}
    .story-small-grid,.quality-grid,.values-grid,.stats-overlay,.promise-cards{grid-template-columns:1fr;}
    .story-small-grid{margin-top:15px;padding:0;}
}

.contact-hero{
    min-height:500px;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 30%,rgba(255,255,255,.5) 55%,rgba(255,255,255,0) 100%),
        url('../images/contact-hero.png') center right/cover no-repeat;
    display:flex;
    align-items:center;
}
.contact-hero-content{max-width:520px;}
.contact-hero h1{
    font-size:56px;
    line-height:1.08;
    font-weight:900;
    margin:18px 0;
}
.contact-hero h1 span{color:var(--orange);}
.contact-hero p{
    font-size:16px;
    color:#333;
    max-width:380px;
    line-height:1.8;
    margin-bottom:28px;
}
.hero-contact-row{
    display:flex;
    gap:35px;
    align-items:center;
}
.hero-contact-item{
    display:flex;
    align-items:center;
    gap:5px;
}
.hero-contact-icon{
    width:55px;
    height:55px;
    border-radius:10px;
    background:#f5f2ef;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--orange);
    font-size:24px;
}
.hero-contact-item h4{
    font-size:12px;
    font-weight:900;
    margin-bottom:3px;
}
.hero-contact-item span{
    font-size:13px;
    color:#333;
}

.contact-main{
    background:#fff;
}
.contact-grid{
    display:grid;
    grid-template-columns:.85fr 1.35fr;
    gap:70px;
    align-items:start;
}
.contact-info h2{
    font-size:32px;
    font-weight:900;
    margin:12px 0 12px;
}
.contact-info > p{
    color:#555;
    line-height:1.75;
    margin-bottom:28px;
}
.contact-box{
    display:flex;
    gap:18px;
    margin-bottom:26px;
}
.contact-icon{
    width:55px;
    height:55px;
    border-radius:10px;
    background:#f5f2ef;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--orange);
    font-size:24px;
    flex-shrink:0;
}
.contact-box h4{
    font-size:13px;
    font-weight:900;
    margin-bottom:5px;
}
.contact-box p{
    font-size:14px;
    color:#333;
    line-height:1.65;
}

.contact-form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    padding:36px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}
.form-title{
    color:var(--orange);
    font-size:14px;
    font-weight:800;
    margin-bottom:26px;
    display:flex;
    align-items:center;
    gap:14px;
}
.form-title::after{
    content:'';
    width:42px;
    height:2px;
    background:var(--orange);
}
.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-bottom:18px;
}
.contact-form-card input,
.contact-form-card textarea{
    width:100%;
    border:1px solid #e6e2dc;
    border-radius:6px;
    padding:16px 18px;
    font-family:inherit;
    font-size:14px;
    outline:none;
    background:#fff;
}
.contact-form-card textarea{
    resize:vertical;
    margin-bottom:20px;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus{
    border-color:var(--orange);
}
.btn-green{
    background:#075f35;
    color:#fff;
}
.btn-green:hover{
    background:#064b2b;
}
.safe-note{
    margin-top:16px;
    font-size:13px;
    color:#555;
    display:flex;
    align-items:center;
    gap:8px;
}
.safe-note i{color:#075f35;}

.map-section{
    padding:0;
}
.map-section{
    position:relative;
}

.map-wrapper{
    position:relative;
    height:430px;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(20%);
}

.map-wrapper .container{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
}

.map-card{
    width:290px;
    background:#fff;
    padding:28px;
    border-radius:8px;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
}
.map-card{
    width:280px;
    background:#fff;
    padding:28px;
    border-radius:6px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.map-card h3{
    font-size:20px;
    font-weight:900;
    margin-bottom:12px;
}
.map-card p{
    color:#555;
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
}
.btn-map{
    border:1px solid #075f35;
    color:#075f35;
    background:#fff;
    padding:11px 18px;
    font-size:12px;
}
.btn-map:hover{
    background:#075f35;
    color:#fff;
}

.contact-features{
    padding:36px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:#fff;
}
.contact-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.contact-feature-item{
    display:flex;
    gap:18px;
    align-items:center;
    border-right:1px solid var(--border);
}
.contact-feature-item:last-child{
    border-right:0;
}
.feature-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#f3f2f0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b5b35;
    font-size:28px;
    flex-shrink:0;
}
.contact-feature-item h4{
    font-size:14px;
    font-weight:900;
    margin-bottom:6px;
}
.contact-feature-item p{
    font-size:13px;
    color:#555;
    line-height:1.5;
}

@media(max-width:900px){
    .contact-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
    .contact-feature-grid{
        grid-template-columns:1fr 1fr;
    }
    .hero-contact-row{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }
}
@media(max-width:600px){
    .contact-hero h1{
        font-size:38px;
    }
    .form-grid,
    .contact-feature-grid{
        grid-template-columns:1fr;
    }
    .contact-form-card{
        padding:24px;
    }
}

.products-hero{
    min-height:430px;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 32%,rgba(255,255,255,.55) 55%,rgba(255,255,255,0) 100%),
        url('../images/product-hero.png') center right/cover no-repeat;
    display:flex;
    align-items:center;
}

.products-hero-content{
    max-width:540px;
}

.products-hero h1{
    font-size:48px;
    line-height:1.12;
    font-weight:900;
    margin:18px 0;
}

.products-hero h1 span{
    color:var(--orange);
}

.products-hero p{
    max-width:420px;
    color:#333;
    font-size:16px;
    line-height:1.8;
    margin-bottom:28px;
}

.product-badges{
    display:flex;
    gap:26px;
}

.product-badge{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    text-align:center;
    border-right:1px solid #ddd;
    padding-right:24px;
}

.product-badge:last-child{
    border-right:0;
}

.product-badge i{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#f4f2ef;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b5b35;
    font-size:23px;
}

.product-badge span{
    font-size:12px;
    font-weight:900;
    line-height:1.25;
}

.products-section{
    padding:45px 0 70px;
    background:#fff;
}

.products-layout{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:40px;
}

.products-sidebar{
    border-right:1px solid var(--border);
    padding-right:30px;
}

.products-sidebar h4{
    font-size:14px;
    font-weight:900;
    margin-bottom:18px;
}

.category-list{
    margin-bottom:40px;
}

.category-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    font-size:14px;
    color:#444;
    border-radius:4px;
    margin-bottom:5px;
}

.category-list li i{
    width:18px;
    color:#5b625f;
}

.category-list li.active{
    background:#f8f1eb;
    color:var(--orange);
    font-weight:800;
    border-left:3px solid var(--orange);
}

.category-list li.active i{
    color:var(--orange);
}

.help-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:8px;
    padding:24px;
    margin-bottom:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.help-card img{
    width:120px;
    margin:0 auto 18px;
}

.help-card h3{
    font-size:24px;
    line-height:1.15;
    margin-bottom:12px;
}

.help-card p{
    font-size:13px;
    color:#555;
    line-height:1.7;
    margin-bottom:18px;
}

.help-card a,
.catalogue-card a,
.product-card a{
    color:var(--orange);
    font-size:13px;
    font-weight:900;
}

.catalogue-card{
    border:1px solid var(--border);
    border-radius:6px;
    padding:22px;
}

.catalogue-card h4{
    font-size:13px;
    margin-bottom:14px;
}

.catalogue-card p{
    font-size:13px;
    color:#555;
    line-height:1.7;
    margin-bottom:14px;
}

.products-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
}

.products-top p{
    font-size:13px;
    color:#444;
    font-weight:700;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.product-card{
    border:1px solid var(--border);
    border-radius:7px;
    overflow:hidden;
    background:#fff;
    transition:.25s;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    height:175px;
    object-fit:cover;
}

.product-card-body{
    padding:20px;
}

.product-card h3{
    font-size:18px;
    font-weight:900;
    line-height:1.25;
    margin-bottom:10px;
}

.product-card p{
    font-size:14px;
    color:#555;
    line-height:1.65;
    min-height:70px;
    margin-bottom:14px;
}

.product-features{
    padding:35px 0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    background:#fff;
}

.product-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.product-feature{
    display:flex;
    align-items:center;
    gap:18px;
    border-right:1px solid var(--border);
}

.product-feature:last-child{
    border-right:0;
}

.product-feature h4{
    font-size:14px;
    font-weight:900;
    margin-bottom:6px;
}

.product-feature p{
    font-size:13px;
    color:#555;
}

.products-cta{
    min-height:260px;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.92) 34%,rgba(255,255,255,.55) 55%,rgba(255,255,255,0) 100%),
        url('../images/project-bg.png') center right/cover no-repeat;
    display:flex;
    align-items:center;
}

.cta-content{
    max-width:560px;
    padding:45px 0;
}

.cta-content h2{
    font-size:34px;
    line-height:1.15;
    font-weight:900;
    margin:12px 0;
}

.cta-content h2 span{
    color:var(--orange);
}

.cta-content p{
    color:#444;
    margin-bottom:22px;
}

.cta-buttons{
    display:flex;
    gap:16px;
}

.btn-green{
    background:#075f35;
    color:#fff;
}

.btn-green:hover{
    background:#064b2b;
}

@media(max-width:1100px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){
    .products-layout{
        grid-template-columns:1fr;
    }

    .products-sidebar{
        border-right:0;
        padding-right:0;
    }

    .product-feature-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:700px){
    .products-hero h1{
        font-size:36px;
    }

    .product-badges{
        flex-wrap:wrap;
    }

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

    .product-feature-grid{
        grid-template-columns:1fr;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:flex-start;
    }
}

.works-hero{
    min-height:450px;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.94) 34%,rgba(255,255,255,.55) 58%,rgba(255,255,255,0) 100%),
        url('/images/project-hero.png') center right/cover no-repeat;
    display:flex;
    align-items:center;
}
.works-hero-content{max-width:540px;}
.works-hero h1{font-size:48px;line-height:1.12;font-weight:900;margin:5px 0;}
.works-hero h1 span{color:var(--orange);}
.works-hero p{max-width:430px;color:#333;line-height:1.8;margin-bottom:10px;}
.works-badges{display:flex;gap:25px;}
.works-badges div{text-align:center;border-right:1px solid #ddd;padding-right:22px;}
.works-badges div:last-child{border-right:0;}
.works-badges i{width:52px;height:52px;border-radius:50%;background:#f4f2ef;color:#0b5b35;display:flex;align-items:center;justify-content:center;margin:0 auto 10px;font-size:22px;}
.works-badges span{font-size:12px;font-weight:900;}

.works-stats{margin-top:-40px;position:relative;z-index:2;}
.works-stats-card{background:#fff;border-radius:12px;box-shadow:0 15px 45px rgba(0,0,0,.12);display:grid;grid-template-columns:repeat(4,1fr);padding:30px;}
.works-stats-card div{display:flex;align-items:center;gap:14px;border-right:1px solid var(--border);}
.works-stats-card div:last-child{border-right:0;}
.works-stats-card i{font-size:34px;color:var(--orange);}
.works-stats-card strong{font-size:30px;color:#2f6b45;font-family:'Montserrat';}
.works-stats-card span{font-size:14px;color:#333;}

.works-gallery{padding:60px 0 45px;}
.works-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.work-card{height:260px;border-radius:8px;overflow:hidden;position:relative;}
.work-card img{width:100%;height:100%;object-fit:cover;}
.work-card::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.78),rgba(0,0,0,.05));}
.work-overlay{position:absolute;left:22px;right:22px;bottom:20px;color:#fff;z-index:2;}
.work-overlay span{font-size:11px;background:rgba(0,0,0,.45);padding:5px 9px;border-radius:4px;font-weight:800;}
.work-overlay h3{font-size:20px;margin:14px 0 6px;}
.work-overlay p{font-size:13px;color:#eee;}
.work-overlay i{color:var(--orange);}

.work-process{padding:55px 0;background:#fff;}
.process-grid{display:grid;grid-template-columns:.8fr 1.4fr;gap:60px;align-items:center;}
.process-text h2{font-size:32px;line-height:1.15;font-weight:900;margin:12px 0;}
.process-text p{color:#555;line-height:1.7;margin-bottom:20px;}
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.process-steps div{text-align:left;position:relative;}
.process-steps i{width:82px;height:82px;border-radius:50%;background:#f4f2ef;color:var(--orange);display:flex;align-items:center;justify-content:center;font-size:30px;margin-bottom:18px;}
.process-steps b{font-size:13px;color:#333;}
.process-steps h4{font-size:15px;margin:6px 0;}
.process-steps p{font-size:13px;color:#666;line-height:1.6;}

.works-cta{
    padding:34px 0;
    background:
        linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 45%,rgba(255,255,255,.2) 100%),
        url('/images/have-project-bg.png') center right/cover no-repeat;
}
.cta-flex{display:flex;justify-content:space-between;align-items:center;gap:25px;}
.cta-flex h2{font-size:28px;line-height:1.15;}

@media(max-width:900px){
    .works-grid,.works-stats-card{grid-template-columns:1fr 1fr;}
    .process-grid{grid-template-columns:1fr;}
    .process-steps{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
    .works-hero h1{font-size:36px;}
    .works-badges{flex-wrap:wrap;}
    .works-grid,.works-stats-card,.process-steps{grid-template-columns:1fr;}
    .cta-flex{flex-direction:column;align-items:flex-start;}
}

/* ================= RESPONSIVE PREMIUM FIX ================= */

html{
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
}

body.menu-open{
    overflow:hidden;
}

.container{
    width:min(1200px, 92%);
    max-width:1200px;
    margin-inline:auto !important;
    padding-inline:0;
}

html,
body{
    margin:0;
    overflow-x:clip;
}

body.menu-open{
    overflow:hidden;
}

.site-header{
    position:-webkit-sticky;
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:#fff;
    border-bottom:1px solid #ececec;
    box-shadow:0 6px 25px rgba(0,0,0,.04);
}

.nav-wrap{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:26px;
    padding:0;
}

.site-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.site-logo img{
    width:auto;
    height:58px;
    object-fit:contain;
}

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-nav a{
    font-size:13px;
    font-weight:800;
    color:#111;
    text-transform:uppercase;
    letter-spacing:.2px;
    padding:30px 0 24px;
    position:relative;
}

.desktop-nav a.active,
.desktop-nav a:hover{
    color:var(--orange);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:18px;
    height:2px;
    background:var(--orange);
}

.desktop-quote{
    flex-shrink:0;
    padding:13px 22px;
}

.mobile-toggle{
    width:46px;
    height:46px;
    border:1px solid var(--border);
    border-radius:10px;
    background:#fff;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    cursor:pointer;
    position:relative;
    z-index:1001;
}

.mobile-toggle span{
    width:22px;
    height:2.5px;
    background:#111;
    border-radius:50px;
    transition:.35s ease;
}

.mobile-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(6px,6px);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

.mobile-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:min(330px, 86vw);
    height:100vh;
    background:#fff;
    z-index:1000;
    padding:105px 26px 30px;
    display:flex;
    flex-direction:column;
    gap:6px;
    transition:.38s ease;
    box-shadow:-20px 0 60px rgba(0,0,0,.16);
}

.mobile-nav.active{
    right:0;
}

.mobile-nav a{
    padding:15px 14px;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    border-bottom:1px solid #f1eee9;
    color:#111;
}

.mobile-nav a:hover{
    color:var(--orange);
}

.mobile-quote{
    margin-top:16px;
    background:var(--orange);
    color:#fff !important;
    border-radius:8px;
    text-align:center;
    border-bottom:0 !important;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.48);
    z-index:998;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Remove old inline style issues */
.about-hero .container,
.contact-hero .container,
.products-hero .container,
.works-hero .container,
.products-cta .container{
    margin-inline:auto !important;
}

/* General */
img{
    max-width:100%;
}

.btn{
    white-space:nowrap;
}

/* Tablet */
@media(max-width:1180px){
    .desktop-nav ul{
        gap:18px;
    }

    .desktop-nav a{
        font-size:12px;
    }

    .desktop-quote{
        padding:12px 18px;
        font-size:12px;
    }
}

@media(max-width:991px){
    .desktop-nav,
    .desktop-quote{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .nav-wrap{
        min-height:74px;
    }

    .site-logo img{
        height:90px;
    }

    /* Home hero */
    .hero{
        min-height:auto;
        display:block;
        padding:0;
        background:#fff;
    }

    .hero-media{
        position:relative;
        width:100%;
        height:340px;
    }

    .hero-media::before{
        background:linear-gradient(to bottom, rgba(255,255,255,0) 40%, #fff 100%);
    }

    .hero-copy{
        max-width:100%;
        padding:36px 0 45px;
    }

    .hero-copy h1,
    .about-hero h1,
    .products-hero h1,
    .contact-hero h1,
    .works-hero h1{
        font-size:40px;
        line-height:1.12;
    }

    .hero-cta,
    .cta-buttons,
    .hero-contact-row{
        flex-wrap:wrap;
    }

    .hero-badges,
    .product-badges,
    .works-badges{
        gap:16px;
    }

    .hero-badge,
    .product-badge,
    .works-badges div{
        flex:1 1 130px;
        max-width:none;
        border:1px solid var(--border);
        border-radius:12px;
        padding:16px 10px;
        background:#fff;
    }

    .product-badge{
        border-right:1px solid var(--border);
    }

    .works-badges div{
        border-right:1px solid var(--border);
    }

    /* Page heroes */
    .about-hero,
    .products-hero,
    .contact-hero,
    .works-hero{
        min-height:auto;
        padding:70px 0 360px;
        background-position:center bottom;
        align-items:flex-start;
    }

    .about-hero{
        background:
            linear-gradient(180deg,#fff 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.35) 78%,rgba(255,255,255,0) 100%),
            url('../images/about-hero.png') center bottom/cover no-repeat;
    }

    .products-hero{
        background:
            linear-gradient(180deg,#fff 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.35) 78%,rgba(255,255,255,0) 100%),
            url('../images/product-hero.png') center bottom/cover no-repeat;
    }

    .contact-hero{
        background:
            linear-gradient(180deg,#fff 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.35) 78%,rgba(255,255,255,0) 100%),
            url('../images/contact-hero.png') center bottom/cover no-repeat;
    }

    .works-hero{
        background:
            linear-gradient(180deg,#fff 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.35) 78%,rgba(255,255,255,0) 100%),
            url('/images/project-hero.png') center bottom/cover no-repeat;
    }

    .story-grid,
    .promise-grid,
    .contact-grid,
    .process-grid{
        grid-template-columns:1fr;
        gap:42px;
    }

    .feature-grid,
    .values-grid,
    .stats-grid,
    .stats-overlay,
    .promise-cards,
    .product-grid,
    .product-feature-grid,
    .contact-feature-grid,
    .works-grid,
    .works-stats-card,
    .process-steps,
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

    .footer-bottom{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }
}

/* Mobile */
@media(max-width:600px){
    .container{
        width:90%;
    }

    .site-logo img{
        height:90px;
    }

    .nav-wrap{
        min-height:68px;
    }

    .mobile-toggle{
        width:42px;
        height:42px;
    }

    .section{
        padding:54px 0;
    }

    .hero-media{
        height:270px;
    }

    .hero-copy h1,
    .about-hero h1,
    .products-hero h1,
    .contact-hero h1,
    .works-hero h1{
        font-size:32px;
    }

    .hero-copy p,
    .about-hero p,
    .products-hero p,
    .contact-hero p,
    .works-hero p{
        font-size:14px;
        line-height:1.7;
    }

    .about-hero,
    .products-hero,
    .contact-hero,
    .works-hero{
        padding:48px 0 260px;
    }

    .btn,
    .hero-cta .btn,
    .cta-buttons .btn{
        width:100%;
        justify-content:center;
    }

    .hero-cta,
    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .feature-grid,
    .values-grid,
    .stats-grid,
    .stats-overlay,
    .promise-cards,
    .product-grid,
    .product-feature-grid,
    .contact-feature-grid,
    .works-grid,
    .works-stats-card,
    .process-steps,
    .footer-grid,
    .collections-grid,
    .form-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .story-main{
        height:300px;
    }

    .story-small-grid{
        grid-template-columns:1fr;
        margin-top:14px;
        padding:0;
    }

    .story-small-grid img{
        height:210px;
    }

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

    .quality-item{
        padding:22px 18px;
    }

    .about-stat,
    .works-stats-card div,
    .product-feature,
    .contact-feature-item{
        border-right:0;
        border-bottom:1px solid var(--border);
        padding-bottom:18px;
    }

    .about-stat:last-child,
    .works-stats-card div:last-child,
    .product-feature:last-child,
    .contact-feature-item:last-child{
        border-bottom:0;
    }

    .product-card img{
        height:220px;
    }

    .work-card{
        height:260px;
    }

    .contact-form-card{
        padding:22px;
    }

    .map-wrapper{
        height:520px;
    }

    .map-wrapper .container{
        align-items:flex-end;
        padding-bottom:24px;
    }

    .map-card{
        width:100%;
    }

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

    .footer-about .logo img{
        width:170px !important;
    }
}
/* ===== MOBILE HERO PREMIUM FIX ===== */
@media(max-width:600px){

    .hero,
    .about-hero,
    .products-hero,
    .contact-hero,
    .works-hero{
        min-height:auto;
        padding:0 !important;
        display:block;
        background:none !important;
    }

    .hero-media{
        position:relative;
        width:100%;
        height:260px;
        overflow:hidden;
    }

    .hero-media img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .about-hero::before,
    .products-hero::before,
    .contact-hero::before,
    .works-hero::before{
        content:'';
        display:block;
        width:100%;
        height:260px;
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
    }

    .about-hero::before{
        background-image:url('../images/about-hero.png');
    }

    .products-hero::before{
        background-image:url('../images/product-hero.png');
    }

    .contact-hero::before{
        background-image:url('../images/contact-hero.png');
    }

    .works-hero::before{
        background-image:url('/images/project-hero.png');
    }

    .hero .container,
    .about-hero .container,
    .products-hero .container,
    .contact-hero .container,
    .works-hero .container{
        width:90%;
        margin:0 auto !important;
        padding:28px 0 42px;
    }

    .hero-copy,
    .about-hero-content,
    .products-hero-content,
    .contact-hero-content,
    .works-hero-content{
        max-width:100%;
        padding:0;
    }

    .hero-copy h1,
    .about-hero h1,
    .products-hero h1,
    .contact-hero h1,
    .works-hero h1{
        font-size:31px;
        line-height:1.15;
        margin:12px 0 14px;
    }

    .hero-copy p,
    .about-hero p,
    .products-hero p,
    .contact-hero p,
    .works-hero p{
        font-size:14px;
        line-height:1.75;
        max-width:100%;
        margin-bottom:22px;
    }

    .breadcrumb,
    .eyebrow{
        font-size:12px;
        letter-spacing:1.2px;
    }

    .orange-line,
    .hero-copy .rule{
        width:52px;
        height:3px;
        margin-bottom:16px;
    }

    .hero-badges,
    .product-badges,
    .works-badges,
    .hero-contact-row{
        display:flex;
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .hero-badge,
    .product-badge,
    .works-badges div,
    .hero-contact-item{
        background:#fff;
        border:1px solid var(--border);
        border-radius:14px;
        padding:14px 10px;
        box-shadow:0 10px 28px rgba(0,0,0,.05);
    }

    .hero-contact-item{
        align-items:flex-start;
    }

    .hero-contact-icon{
        width:42px;
        height:42px;
        font-size:18px;
        flex-shrink:0;
    }

    .hero-cta{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
        margin-bottom:28px;
    }

    .hero-cta .btn{
        width:100%;
        justify-content:center;
    }
}
/* ================= HOME HERO FIX ================= */
.hero{
    position:relative;
    min-height:620px;
    background:#f8f7f5;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero .container{
    position:relative;
    z-index:3;
}

.hero-copy{
    max-width:520px;
    padding:70px 0;
}

.hero-copy h1{
    font-size:52px;
    line-height:1.08;
    font-weight:900;
    margin:16px 0 20px;
}

.hero-copy p{
    font-size:17px;
    line-height:1.75;
    color:#4e5560;
}

.hero-media{
    position:absolute;
    inset:0 0 0 auto;
    width:64%;
    height:100%;
    z-index:1;
}

.hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-media::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        #f8f7f5 0%,
        rgba(248,247,245,.96) 12%,
        rgba(248,247,245,.78) 28%,
        rgba(248,247,245,.18) 48%,
        rgba(248,247,245,0) 100%
    );
    z-index:2;
}

@media(max-width:991px){
    .hero{
        display:block;
        min-height:auto;
        background:#fff;
    }

    .hero-media{
        position:relative;
        width:100%;
        height:320px;
    }

    .hero-media::before{
        background:linear-gradient(
            180deg,
            rgba(255,255,255,0) 35%,
            rgba(255,255,255,.96) 100%
        );
    }

    .hero-copy{
        max-width:100%;
        padding:34px 0 44px;
    }

    .hero-copy h1{
        font-size:38px;
    }
}

@media(max-width:600px){
    .hero-media{
        height:260px;
    }

    .hero-copy h1{
        font-size:31px;
    }
}


/* ================= HEADER ================= */

.site-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #ececec;
    box-shadow:0 6px 25px rgba(0,0,0,.04);
}

.site-header .nav-wrap{
    max-width:1240px;
    margin:auto;
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

/* Logo */

.site-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.site-logo img{
    height:90px;
    width:auto;
    display:block;
}

/* Desktop Menu */

.desktop-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.desktop-nav ul{
    display:flex;
    align-items:center;
    gap:38px;
    margin:0;
    padding:0;
}

.desktop-nav li{
    list-style:none;
}

.desktop-nav a{
    position:relative;
    display:inline-block;
    font-size:14px;
    font-weight:700;
    color:#111;
    text-transform:uppercase;
    padding:31px 0;
    transition:.3s;
}

.desktop-nav a:hover,
.desktop-nav a.active{
    color:#e2690a;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after{
    content:'';
    position:absolute;
    left:0;
    bottom:20px;
    width:100%;
    height:2px;
    background:#e2690a;
}

/* Quote Button */

.desktop-quote{
    flex-shrink:0;
    padding:14px 26px;
    border-radius:8px;
    font-size:14px;
}

/* Mobile */

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:#fff;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:5px;
}

.mobile-toggle span{
    width:24px;
    height:2px;
    background:#111;
    transition:.3s;
}

.mobile-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.mobile-toggle.active span:nth-child(2){
    opacity:0;
}

.mobile-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}

.mobile-nav{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:85%;
    height:100%;
    background:#fff;
    transition:.35s;
    z-index:9999;
    padding:90px 25px 30px;
    display:flex;
    flex-direction:column;
}

.mobile-nav.active{
    right:0;
}

.mobile-nav a{
    padding:16px 10px;
    border-bottom:1px solid #eee;
    font-weight:700;
    text-transform:uppercase;
}

.mobile-quote{
    margin-top:18px;
    background:#e2690a;
    color:#fff !important;
    text-align:center;
    border-radius:8px;
    border:none !important;
}

/* Tablet */

@media(max-width:991px){

    .desktop-nav,
    .desktop-quote{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .site-header .nav-wrap{
        height:72px;
    }

    .site-logo img{
        height:90px;
    }
}

/* Mobile */

@media(max-width:576px){

    .site-header .nav-wrap{
        height:68px;
    }

    .site-logo img{
        height:90px;
    }

    .mobile-toggle{
        width:42px;
        height:42px;
    }

}
.form-alert {
    padding: 13px 16px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.form-alert-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #b7dfc1;
}

.form-alert-error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #efb5bb;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}