/*==============================
Google Reset
==============================*/
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Cairo',sans-serif;
background:var(--light);
color:#222;
overflow-x:hidden;
line-height:1.8;
direction:rtl;
}

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

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

ul{
list-style:none;
}

/*==============================
Variables (برتقالي مهيمن)
==============================*/
:root{
--primary:#DE8F5F;      
--secondary:#211E48;    
--orange-dark:#C67445;  
--gold:#F6E7D8;         
--light:#FFF9F5;        
--white:#ffffff;
--text:#211E48;
--gray:#7B6F69;
--shadow:0 10px 30px rgba(222,143,95,.15);
--radius:18px;
--transition:.35s ease;
}

/*==============================
Container
==============================*/
.container{
width:90%;
max-width:1300px;
margin:auto;
}

/*==============================
Top Bar
==============================*/
.top-bar{
background:var(--primary);
color:#fff;
font-size:13px;
padding:8px 0;
}

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

.top-info{
display:flex;
align-items:center;
gap:8px;
}

.top-social{
display:flex;
align-items:center;
gap:18px;
}

.top-social a{
color:#fff;
transition:.3s;
}

.top-social a:hover{
color:var(--secondary);
}

/*==============================
Header
==============================*/
header{
background:#fff;
padding:20px 0;
}

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

.logo{
display:flex;
align-items:center;
gap:18px;
}

.logo img{
width:95px;
}

.logo h2{
font-size:46px;
font-weight:900;
color:var(--primary);
line-height:1;
}

.logo p{
font-size:19px;
font-weight:bold;
color:var(--secondary);
}

.logo small{
color:var(--orange-dark);
font-size:15px;
}

/*==============================
Search
==============================*/
.search{
flex:1;
display:flex;
max-width:700px;
height:58px;
}

.search input{
width:100%;
border:1px solid #ddd;
border-right:none;
padding:0 25px;
font-size:15px;
border-radius:35px 0 0 35px;
outline:none;
}

.search button{
width:60px;
background:var(--primary);
color:#fff;
border:none;
border-radius:0 35px 35px 0;
cursor:pointer;
font-size:18px;
transition:var(--transition);
}

.search button:hover{
background:var(--orange-dark);
}

/*==============================
Header Icons
==============================*/
.header-icons{
display:flex;
gap:35px;
}

.header-icons a{
display:flex;
flex-direction:column;
align-items:center;
color:var(--secondary);
position:relative;
font-size:14px;
transition:var(--transition);
}

.header-icons a:hover{
color:var(--primary);
}

.header-icons i{
font-size:28px;
margin-bottom:8px;
}

.cart{
position:relative;
}

.count{
position:absolute;
top:-6px;
right:-10px;
width:18px;
height:18px;
background:var(--primary);
color:#fff;
border-radius:50%;
font-size:11px;
display:flex;
align-items:center;
justify-content:center;
}

.cart small{
margin-top:8px;
font-size:14px;
}

/*==============================
Navbar
==============================*/
nav{
background:#fff;
margin-bottom:18px;
}

nav .container{
border-radius:18px;
box-shadow:0 3px 12px rgba(0,0,0,.08);
padding:0 20px;
}

nav ul{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
}

nav li{
position:relative;
}

nav li a{
display:block;
padding:15px 18px;
color:var(--secondary);
font-weight:700;
font-size:15px;
transition:.3s;
}

nav li.active a{
background:var(--primary);
color:#fff;
border-radius:12px;
}

nav li a:hover{
color:var(--primary);
}

/*==============================
Buttons
==============================*/
.btn{
display:inline-block;
padding:14px 35px;
background:var(--primary);
color:#fff;
border-radius:50px;
font-weight:700;
transition:.35s;
box-shadow:var(--shadow);
}

.btn:hover{
background:var(--secondary);
color:#fff;
transform:translateY(-4px);
}

.btn-small{
display:inline-block;
margin-top:15px;
padding:10px 24px;
background:var(--primary);
color:#fff;
border-radius:40px;
transition:.3s;
}

.btn-small:hover{
background:var(--orange-dark);
}

/*==============================
Hero
==============================*/
.hero{
margin:20px auto;
}

.heroSwiper{
width:95%;
height:370px;
border-radius:20px;
overflow:hidden;
}

.hero-slide{
position:relative;
width:100%;
height:370px;
}

.hero-bg{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(222, 143, 95, 0.3); /* تظليل دافئ يتناسب مع الهوية */
}

.hero-text{
position:absolute;
left:8%;
top:50%;
transform:translateY(-50%);
color:#fff;
max-width:450px;
}

.hero-text h1{
font-size:62px;
font-weight:900;
line-height:1.15;
margin-bottom:20px;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text span{
display:block;
color:var(--gold);
}

.hero-text p{
font-size:22px;
margin-bottom:30px;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-btn{
display:inline-block;
background:var(--primary);
color:#fff;
padding:15px 45px;
border-radius:12px;
font-weight:bold;
transition:.3s;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover{
background:var(--white);
color:var(--secondary);
}

.swiper-button-next,
.swiper-button-prev{
width:52px;
height:52px;
background:#fff;
border-radius:50%;
color:var(--primary);
box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.swiper-button-next::after,
.swiper-button-prev::after{
font-size:18px;
font-weight:bold;
}

.swiper-pagination-bullet{
background:#fff;
opacity:1;
}

.swiper-pagination-bullet-active{
background:var(--primary);
width:30px;
border-radius:20px;
}

@media(max-width:992px){
.heroSwiper{ height:300px; box-shadow:0 10px 25px rgba(0,0,0,.08); }
.hero-slide{ height:300px; }
.hero-text{ left:40px; max-width:320px; }
.hero-text h1{ font-size:40px; }
.hero-text p{ font-size:18px; }
}

@media(max-width:768px){
.heroSwiper{ height:220px; }
.hero-slide{ height:220px; }
.hero-text{ left:20px; max-width:250px; }
.hero-text h1{ font-size:28px; }
.hero-text p{ font-size:14px; margin-bottom:15px; }
.hero-btn{ padding:10px 25px; font-size:14px; }
}

/*==============================
Categories
==============================*/
.categories{
padding:60px 0;
background:#fff;
}

.categories .container{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:20px;
flex-wrap:wrap;
}

.category-item{
text-decoration:none;
color:var(--secondary);
width:110px;
text-align:center;
transition:.3s;
}

.category-item:hover{
transform:translateY(-8px);
color:var(--primary);
}

.icon{
width:86px;
height:86px;
margin:auto;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:34px;
margin-bottom:15px;
}

.category-item span{
font-size:15px;
font-weight:700;
line-height:1.6;
}

/* دوائر التصنيفات بدرجات برتقالية وبيج ناعمة متناسقة */
.pink{ background:#ffece2; }
.yellow{ background:#fff4d7; }
.purple{ background:#fdf3eb; }
.orange{ background:var(--gold); }
.rose{ background:#fcece3; }
.blue{ background:#fff9f5; }
.gold{ background:#fcead9; }
.sky{ background:#fff3e9; }
.violet{ background:#fceddf; }

@media(max-width:992px){
.categories .container{ justify-content:center; }
.category-item{ width:120px; margin-bottom:25px; }
}

/*==============================
Features
==============================*/
.features{
padding-bottom:60px;
}

.features .container{
display:grid;
grid-template-columns:repeat(5,1fr);
background:#fff;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
overflow:hidden;
}

.feature{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
padding:25px;
border-left:1px solid #eee;
}

.feature:last-child{
border:none;
}

.feature i{
font-size:32px;
color:var(--primary);
}

.feature h4{
margin-bottom:6px;
font-size:17px;
color:var(--secondary);
}

.feature p{
font-size:14px;
color:#666;
}

/*==============================
Promo Banner
==============================*/
.promo{
padding:60px 0 30px;
}

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

.promo-card{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
border-radius:18px;
overflow:hidden;
transition:.3s;
}

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

.promo-card img{
width:140px;
}

.promo-text h3{
font-size:24px;
margin-bottom:10px;
color:var(--secondary);
}

.promo-text p{
margin-bottom:18px;
color:#666;
}

.promo-text a{
display:inline-block;
padding:10px 22px;
background:var(--primary);
color:#fff;
border-radius:10px;
font-size:14px;
transition:var(--transition);
}

.promo-text a:hover{
    background:var(--secondary);
    color:#fff !important;
}

.blue{ background:#fff5ef; }
.pink{ background:#fffcf9; }
.cyan{ background:#fdf4ee; }
.orange{ background:var(--gold); }

@media(max-width:768px){
.section-title h2{ font-size:30px; }
.category-card{ padding:25px 15px; }
.category-card img{ width:70px; height:70px; }
.feature-box{ padding:30px 20px; }
.feature-box i{ width:70px; height:70px; line-height:70px; font-size:28px; }
.promo-card{ height:220px; }
.promo-content h2{ font-size:24px; }
}

/*==============================
Popular Categories
==============================*/
.popular-categories{
padding:70px 0;
background:#fff;
}

.section-title{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
margin-bottom:35px;
}

.section-title span{
width:70px;
height:2px;
background:var(--primary);
}

.section-title h2{
font-size:28px;
color:var(--secondary);
font-weight:800;
}

.popular-grid{
display:grid;
grid-template-columns:repeat(7,1fr);
gap:16px;
}

.popular-card{
display:block;
background:#fff;
border-radius:12px;
overflow:hidden;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.popular-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(222,143,95,.2);
}

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

.popular-card h3{
padding:15px;
font-size:16px;
color:var(--secondary);
text-align:center;
font-weight:600;
line-height:1.5;
}

@media(max-width:1200px){
.popular-grid{ grid-template-columns:repeat(4,1fr); }
}

@media(max-width:768px){
.popular-grid{ grid-template-columns:repeat(2,1fr); }
}

/*==============================
Flower & Gifts & Toys
==============================*/
.products-section{
padding:70px 0;
background:#fff;
}

.products-section.gray{
background:#fdf9f6;
}

.products-section .section-title{
text-align:center;
margin-bottom:45px;
}

.products-section .section-title h2{
font-size:34px;
color:var(--secondary);
font-weight:800;
margin-bottom:10px;
}

.products-section .section-title p{
color:#777;
font-size:17px;
}

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

.product-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.35s;
text-align:center;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(222,143,95,.2);
}

.product-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
transition:.4s;
}

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

.product-card h3{
font-size:20px;
color:var(--secondary);
margin:20px 15px 12px;
font-weight:700;
}

.btn-small{
display:inline-block;
margin-bottom:20px;
padding:12px 28px;
background:var(--primary);
color:#fff;
border-radius:10px;
font-size:15px;
font-weight:600;
transition:.3s;
}

.btn-small:hover{
background:var(--secondary);
color:#fff;
}

@media(max-width:992px){
.products-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:576px){
.products-grid{ grid-template-columns:1fr; }
.product-card img{ height:220px; }
.products-section .section-title h2{ font-size:28px; }
}

/*==============================
Printing Section
==============================*/
.printing{
padding:80px 0;
background:#fdf9f6;
}

.printing-header{
text-align:center;
margin-bottom:50px;
}

.printing-header span{
background:var(--primary);
color: #fff;
padding:8px 20px;
border-radius:30px;
font-size:14px;
font-weight:bold;
}

.printing-header h2{
margin:20px 0 10px;
font-size:40px;
color:var(--secondary);
}

.printing-header p{
color:#777;
font-size:17px;
}

.printing-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
}

.print-card{
background:#fff;
padding:30px 20px;
border-radius:18px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.print-card:hover{
background:var(--primary);
transform:translateY(-10px);
}

.print-card i{
font-size:34px;
color:var(--primary);
margin-bottom:18px;
transition: var(--transition);
}

.print-card h3{
font-size:18px;
color:var(--secondary);
}

.print-card:hover i{
color: var(--white);
}

.print-card:hover h3{
color:#fff;
}

/*==============================
Full Banner
==============================*/
.full-banner{
padding:120px 0;
background:url("../images/banners/banner.jpg") center/cover fixed;
position:relative;
text-align:center;
}

.full-banner::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(222, 143, 95, 0.85); /* تراكب برتقالي قوي للمشروع */
}

.full-banner .content{
position:relative;
z-index:2;
color:#fff;
}

.full-banner h2{
font-size:52px;
margin-bottom:20px;
font-weight:900;
}

.full-banner p{
font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:35px;
line-height:2;
}

.full-banner .btn{
background:var(--secondary);
color:#fff;
}

.full-banner .btn:hover{
background:#fff;
color:var(--primary);
}

@media(max-width:992px){
.printing{ flex-direction:column; text-align:center; }
.printing-text ul li{ justify-content:center; }
.printing-text h2{ font-size:34px; }
.full-banner h2{ font-size:40px; }
}

@media(max-width:768px){
.printing{ padding:70px 0; }
.printing-text h2{ font-size:30px; }
.printing-text p{ font-size:16px; }
.stat h2{ font-size:38px; }
.full-banner{ padding:80px 20px; }
.full-banner h2{ font-size:30px; }
.full-banner p{ font-size:16px; }
}

/*==============================
Testimonials
==============================*/
.testimonials{
padding:90px 0;
background:#fff;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
transition:.35s;
position:relative;
overflow:hidden;
}

.testimonial-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:5px;
height:100%;
background:var(--primary);
}

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 45px rgba(222,143,95,.2);
}

.testimonial-card i{
font-size:40px;
color:var(--primary);
margin-bottom:20px;
}

.testimonial-card p{
color:#666;
line-height:2;
margin-bottom:25px;
}

.client h4{
color:var(--secondary);
font-size:20px;
margin-bottom:5px;
}

.client span{
color:#888;
font-size:15px;
}

/*==============================
Gallery
==============================*/
.gallery{
padding:90px 0;
background:#fdf9f6;
}

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

.gallery-item{
background:#fff;
padding:10px;
border-radius:28px;
border:3px solid #fdf0e7;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
overflow:hidden;
}

.gallery-item img{
width:100%;
height:250px;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery-item:hover{
border-color:var(--primary);
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(222,143,95,.25);
}

.gallery-item:hover img{
transform:scale(1.08);
}

@media(max-width:992px){
.gallery-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:576px){
.gallery-grid{ grid-template-columns:1fr; }
.gallery-item img{ height:220px; }
}

/*==============================
Gallery Button
==============================*/
.gallery-btn{
text-align:center;
margin-top:50px;
}

.telegram-btn{
display:inline-flex;
align-items:center;
gap:12px;
background:linear-gradient(135deg,#229ED9,#0E76C8);
color:#fff;
padding:16px 38px;
border-radius:50px;
font-size:18px;
font-weight:700;
text-decoration:none;
box-shadow:0 12px 30px rgba(34,158,217,.35);
transition:.35s;
}

.telegram-btn i{
font-size:26px;
}

.telegram-btn:hover{
transform:translateY(-5px);
box-shadow:0 18px 40px rgba(34,158,217,.45);
background:linear-gradient(135deg,#0E76C8,#229ED9);
}

/*==============================
Contact Info
==============================*/
.contact-info{
padding:90px 0;
background:#fff;
}

.contact-info .container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.contact-box{
background:#fff;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,.08);
transition:.35s;
align-items:flex-start;
}

.contact-box:hover{
transform:translateY(-10px);
}

.contact-box i{
width:70px;
height:70px;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
background:var(--primary);
color:#fff;
border-radius:50%;
flex-shrink:0;
margin-top:5px;
}

.contact-box:hover i{
background:var(--secondary);
color:#fff;
transform:rotate(360deg);
}

.contact-box h3{
font-size:24px;
margin-bottom:10px;
color:var(--secondary);
}

.contact-box p{
color:#666;
line-height:1.8;
}

/*==============================
Map
==============================*/
.map{
width:100%;
}

.map iframe{
width:100%;
height:450px;
border:none;
display:block;
filter:grayscale(20%);
}

@media(max-width:768px){
.testimonial-card{ padding:25px; }
.gallery-grid{ grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); }
.gallery-grid img{ height:180px; }
.contact-box{ padding:25px; }
.contact-box i{ width:65px; height:65px; line-height:65px; font-size:24px; }
.map iframe{ height:300px; }
}

/*==================================
Footer
==================================*/
.footer{
background:linear-gradient(135deg,#211E48,#171536);
color:#fff;
padding:70px 0 25px;
}

.footer-top{
text-align:center;
margin-bottom:45px;
}

.footer-top img{
width:90px;
margin-bottom:15px;
}

.footer-top h2{
font-size:36px;
margin-bottom:8px;
color:#fff;
}

.footer-top p{
color:#f6e7d8;
font-size:17px;
}

.footer-contact{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-bottom:45px;
}

.contact-box{
background:rgba(255,255,255,.12);
border-radius:18px;
padding:22px;
display:flex;
align-items:center;
gap:15px;
transition:.35s;
}

.contact-box:hover{
background:var(--secondary);
transform:translateY(-8px);
}

.contact-box:hover *{
color:#fff;
}

.contact-box i{
font-size:28px;
color:var(--gold);
}

.contact-box h4{
margin-bottom:6px;
font-size:18px;
}

.contact-box span{
font-size:14px;
color:#fff;
opacity: 0.8;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:40px;
}

.footer-links a{
color:#fff;
text-decoration:none;
padding:10px 18px;
background:rgba(255,255,255,.12);
border-radius:30px;
transition:.3s;
}

.footer-links a:hover{
background:var(--secondary);
color:#fff;
}

.footer-social{
display:flex;
justify-content:center;
gap:18px;
margin-bottom:40px;
}

.footer-social a{
width:52px;
height:52px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
background:rgba(255,255,255,.12);
color:#fff;
font-size:20px;
transition:.35s;
}

.footer-social a:hover{
background:var(--secondary);
color:#fff;
transform:translateY(-6px);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.2);
padding-top:25px;
text-align:center;
color:#fff;
opacity: 0.7;
font-size:15px;
}

@media(max-width:992px){
.footer-contact{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:576px){
.footer-contact{ grid-template-columns:1fr; }
.footer-top h2{ font-size:28px; }
.footer-links{ gap:10px; }
.footer-links a{ font-size:14px; padding:8px 14px; }
}

/*==============================
WhatsApp Button
==============================*/
.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
background:#25D366;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:30px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:.35s;
z-index:999;
}

.whatsapp:hover{
transform:scale(1.12);
}

/*==============================
Back To Top
==============================*/
#topBtn{
position:fixed;
left:25px;
bottom:25px;
width:55px;
height:55px;
border:none;
background:var(--secondary);
color:#fff;
font-size:18px;
border-radius:50%;
cursor:pointer;
box-shadow:0 10px 30px rgba(0,0,0,.2);
transition:.35s;
z-index:999;
}

#topBtn:hover{
background:var(--primary);
color:#fff;
transform:translateY(-6px);
}

/*==============================
Scrollbar
==============================*/
::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#fdf9f6;
}

::-webkit-scrollbar-thumb{
background:var(--primary);
border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
background:var(--orange-dark);
}

/*==============================
Text Selection
==============================*/
::selection{
background:var(--primary);
color:#fff;
}

/*==============================
Animations
==============================*/
.fade-up{ animation:fadeUp .8s ease forwards; }
@keyframes fadeUp{ 0%{ opacity:0; transform:translateY(40px); } 100%{ opacity:1; transform:translateY(0); } }

.zoom-in{ animation:zoomIn .7s ease forwards; }
@keyframes zoomIn{ 0%{ opacity:0; transform:scale(.8); } 100%{ opacity:1; transform:scale(1); } }

.rotate{ animation:rotate360 8s linear infinite; }
@keyframes rotate360{ 100%{ transform:rotate(360deg); } }

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

@media(max-width:768px){
.footer-grid{ grid-template-columns:1fr; text-align:center; }
.footer-grid h3::after{ right:50%; transform:translateX(50%); }
.social{ justify-content:center; }
.whatsapp{ right:15px; bottom:15px; width:55px; height:55px; font-size:26px; }
#topBtn{ left:15px; bottom:15px; width:50px; height:50px; }
}

@media(max-width:480px){
.section-title h2{ font-size:28px; }
.hero-text h1{ font-size:32px; }
.hero-text p{ font-size:15px; }
.btn{ padding:12px 25px; font-size:15px; }
.product-card{ border-radius:15px; }
.category-card{ border-radius:15px; }
.feature-box{ border-radius:15px; }
}

/*==============================
Why Us
==============================*/
.why-us{
padding:60px 0;
}

.why-box{
background:linear-gradient(90deg,#DE8F5F,#BD6F40);
border-radius:18px;
padding:22px 30px;
display:grid;
grid-template-columns:repeat(5,1fr);
align-items:center;
color:#fff;
}

.why-item{
display:flex;
align-items:center;
gap:15px;
}

.why-item .icon{
width:55px;
height:55px;
border:1px solid rgba(255,255,255,.35);
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
color: var(--white);
}

.why-item h3{
font-size:20px;
margin-bottom:5px;
font-weight:700;
}

.why-item p{
font-size:14px;
opacity:.85;
}

.why-logo{
display:flex;
justify-content:center;
}

.why-logo img{
width:90px;
}

@media(max-width:992px){
.why-box{ grid-template-columns:1fr; gap:30px; text-align:center; }
.why-item{ justify-content:center; }
}

.section-title h2{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
}

.section-icon{
color:var(--primary);
font-size:30px;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#fff;
border-radius:50%;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

