/*====================================================
SOHA BURGERS
STYLE.CSS
PART 1 OF 5
====================================================*/

/*==============================
FONT
==============================*/

@font-face{
    font-family:"Bauhaus93";
    src:url("fonts/Bauhaus-93-Regular.otf");
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
RESET
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f8f8;
    color:#222;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/*==============================
COLORS
==============================*/

:root{

    --primary:#d71920;
    --primary-dark:#b81218;

    --white:#ffffff;

    --light:#f5f5f5;

    --text:#202020;

    --grey:#666;

    --shadow:0 12px 35px rgba(0,0,0,.12);

    --radius:18px;

}

/*==============================
HEADINGS
==============================*/

h1,
h2,
.logo h2{

    font-family:"Bauhaus93",sans-serif;

    letter-spacing:2px;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

/*==============================
NAVBAR
==============================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:#fff;

    box-shadow:0 2px 18px rgba(0,0,0,.08);

}

.navbar{

    width:92%;

    max-width:1400px;

    margin:auto;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:70px;

}

.logo h2{

    color:var(--primary);

    font-size:34px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:40px;

}

.navbar ul li a{

    color:#222;

    font-size:17px;

    font-weight:600;

    transition:.3s;

}

.navbar ul li a:hover{

    color:var(--primary);

}

/*==============================
CART ICON
==============================*/

.cart-icon{

    width:58px;

    height:58px;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:24px;

    cursor:pointer;

    position:relative;

    transition:.3s;

}

.cart-icon:hover{

    transform:scale(1.08);

}

#cartBadge{

    position:absolute;

    top:-5px;

    right:-5px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:12px;

    font-weight:bold;

}

/*==============================
HERO
==============================*/

.hero{

    min-height:100vh;

    width:92%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding-top:120px;

}

.hero-left h3{

    color:var(--primary);

    font-size:22px;

    margin-bottom:20px;

    letter-spacing:3px;

}

.hero-left h1{

    color:var(--primary);

    font-size:90px;

    line-height:.9;

    margin-bottom:30px;

}

.hero-left p{

    font-size:19px;

    color:#444;

    line-height:1.8;

    max-width:520px;

    margin-bottom:40px;

}

.hero-right{

    display:flex;

    justify-content:center;

}

.hero-right img{

    width:100%;

    max-width:620px;

}

/*==============================
BUTTON
==============================*/

.order-btn{

    display:inline-block;

    padding:18px 48px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

    box-shadow:var(--shadow);

}

.order-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-left h1{

font-size:68px;

}

.navbar{

flex-wrap:wrap;

height:auto;

padding:20px 0;

}

}

@media(max-width:768px){

.navbar{

justify-content:center;

gap:20px;

}

.navbar ul{

width:100%;

justify-content:center;

gap:18px;

}

.hero{

padding-top:170px;

}

.hero-left h1{

font-size:52px;

}

.logo h2{

font-size:26px;

}

}

/*====================================================
SOHA BURGERS
STYLE.CSS
PART 2 OF 5
MENU SECTION
====================================================*/

/*==============================
MENU SECTION
==============================*/

#menu{

    width:92%;

    max-width:1400px;

    margin:auto;

    padding:80px 0 120px;

}

.section-title{

    text-align:center;

    font-size:54px;

    color:var(--primary);

    margin-bottom:50px;

}

/*==============================
CATEGORY BUTTONS
==============================*/

.categories{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:35px;

}

.categories button{

    padding:15px 28px;

    border:none;

    border-radius:50px;

    background:white;

    color:#333;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    transition:.3s;

}

.categories button:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-3px);

}

.categories button.active{

    background:var(--primary);

    color:white;

}

/*==============================
SEARCH BAR
==============================*/

.search{

    width:100%;

    padding:18px 25px;

    border:none;

    border-radius:50px;

    background:white;

    font-size:16px;

    margin-bottom:50px;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    outline:none;

}

.search::placeholder{

    color:#999;

}

/*==============================
PRODUCT GRID
==============================*/

#menuContainer{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(310px,1fr));

    gap:35px;

}

/*==============================
PRODUCT CARD
==============================*/

.menu-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    position:relative;

}

.menu-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.16);

}

/*==============================
PRODUCT IMAGE
==============================*/

.menu-image{

    width:100%;

    height:240px;

    overflow:hidden;

    background:#fafafa;

}

.menu-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.menu-card:hover .menu-image img{

    transform:scale(1.08);

}

/*==============================
PRODUCT DETAILS
==============================*/

.menu-content{

    padding:25px;

}

.menu-content h3{

    font-size:26px;

    color:var(--primary);

    margin-bottom:12px;

}

.menu-content p{

    color:#666;

    line-height:1.7;

    font-size:15px;

    min-height:65px;

}

/*==============================
PRICE
==============================*/

.price{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin:22px 0;

}

.price h4{

    font-size:30px;

    color:#111;

}

.price small{

    color:#888;

    font-size:13px;

}

/*==============================
ADD BUTTON
==============================*/

.add-btn{

    width:100%;

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--primary);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.add-btn:hover{

    background:var(--primary-dark);

}

/*==============================
POPULAR TAG
==============================*/

.popular{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--primary);

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}

/*==============================
VEG / NON VEG ICON
==============================*/

.food-type{

    width:18px;

    height:18px;

    border-radius:4px;

    border:2px solid #0c8d2d;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-right:8px;

}

.food-type::after{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:#0c8d2d;

}

.food-type.nonveg{

    border-color:#d71920;

}

.food-type.nonveg::after{

    background:#d71920;

}

/*==============================
PRODUCT FOOTER
==============================*/

.card-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:18px;

}

.rating{

    color:#ff9800;

    font-size:14px;

    font-weight:600;

}

/*==============================
EMPTY STATE
==============================*/

.no-products{

    width:100%;

    text-align:center;

    padding:80px 20px;

    color:#777;

    font-size:20px;

}

/*==============================
LOADING PLACEHOLDER
==============================*/

.skeleton{

    animation:pulse 1.3s infinite;

}

@keyframes pulse{

0%{

opacity:.45;

}

50%{

opacity:1;

}

100%{

opacity:.45;

}

}

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

@media(max-width:991px){

#menuContainer{

grid-template-columns:repeat(2,1fr);

}

}

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

@media(max-width:768px){

.section-title{

font-size:40px;

}

.categories{

justify-content:flex-start;

overflow-x:auto;

padding-bottom:10px;

}

.categories::-webkit-scrollbar{

display:none;

}

.categories button{

white-space:nowrap;

}

#menuContainer{

grid-template-columns:1fr;

}

.menu-image{

height:220px;

}

.menu-content{

padding:20px;

}

.menu-content h3{

font-size:22px;

}

.price h4{

font-size:26px;

}

}

@media(max-width:480px){

#menu{

width:94%;

padding:60px 0;

}

.search{

padding:16px 20px;

}

.add-btn{

font-size:16px;

padding:15px;

}

}

/*====================================================
SOHA BURGERS
STYLE.CSS
PART 3 OF 5
SHOPPING CART & CHECKOUT
====================================================*/

/*==============================
CART DRAWER
==============================*/

#cartDrawer{

    position:fixed;

    top:0;

    right:-430px;

    width:420px;

    max-width:100%;

    height:100vh;

    background:#ffffff;

    box-shadow:-12px 0 40px rgba(0,0,0,.18);

    transition:.35s;

    display:flex;

    flex-direction:column;

    z-index:999999;

}

#cartDrawer.open{

    right:0;

}

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

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    border-bottom:1px solid #ececec;

}

.cart-header h2{

    color:var(--primary);

    font-size:32px;

}

#closeCart{

    font-size:36px;

    cursor:pointer;

    transition:.3s;

}

#closeCart:hover{

    color:var(--primary);

    transform:rotate(90deg);

}

/*==============================
CART ITEMS
==============================*/

#cartItems{

    flex:1;

    overflow-y:auto;

    padding:20px;

}

/*==============================
ITEM CARD
==============================*/

.cart-item{

    display:flex;

    gap:15px;

    background:#fafafa;

    border-radius:15px;

    padding:15px;

    margin-bottom:18px;

}

.cart-item img{

    width:90px;

    height:90px;

    border-radius:12px;

    object-fit:cover;

}

.cart-info{

    flex:1;

}

.cart-info h4{

    font-size:18px;

    color:#222;

    margin-bottom:6px;

}

.cart-price{

    color:var(--primary);

    font-size:20px;

    font-weight:700;

}

/*==============================
QUANTITY
==============================*/

.cart-controls{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:12px;

}

.cart-controls button{

    width:34px;

    height:34px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.cart-controls button:hover{

    background:var(--primary-dark);

}

.cart-controls span{

    width:28px;

    text-align:center;

    font-weight:700;

}

/*==============================
REMOVE
==============================*/

.remove-item{

    margin-top:10px;

    border:none;

    background:none;

    color:#d71920;

    cursor:pointer;

    font-weight:700;

    transition:.3s;

}

.remove-item:hover{

    color:#a60000;

}

/*==============================
FOOTER
==============================*/

.cart-footer{

    padding:22px;

    border-top:1px solid #ececec;

    background:white;

}

.price-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:14px;

    font-size:17px;

}

.grand-total{

    font-size:24px;

    font-weight:bold;

    color:var(--primary);

}

/*==============================
COUPON
==============================*/

.cart-footer input{

    width:100%;

    padding:15px;

    border:2px solid #eee;

    border-radius:40px;

    margin-top:15px;

    margin-bottom:15px;

    outline:none;

    font-size:15px;

}

.cart-footer input:focus{

    border-color:var(--primary);

}

/*==============================
BUTTONS
==============================*/

.apply-btn,

#checkout{

    width:100%;

    padding:16px;

    border:none;

    border-radius:40px;

    background:var(--primary);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.apply-btn{

    margin-bottom:12px;

}

.apply-btn:hover,

#checkout:hover{

    background:var(--primary-dark);

}

/*==============================
CHECKOUT MODAL
==============================*/

.checkout-modal{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    display:none;

    justify-content:center;

    align-items:center;

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

    z-index:9999999;

}

.checkout-box{

    width:520px;

    max-width:95%;

    background:white;

    border-radius:22px;

    padding:35px;

}

.checkout-box h2{

    color:var(--primary);

    margin-bottom:25px;

}

.checkout-box input,

.checkout-box textarea{

    width:100%;

    padding:16px;

    border:2px solid #eee;

    border-radius:12px;

    margin-bottom:15px;

    outline:none;

    font-size:15px;

    font-family:Poppins,sans-serif;

}

.checkout-box textarea{

    resize:none;

    height:120px;

}

.checkout-box input:focus,

.checkout-box textarea:focus{

    border-color:var(--primary);

}

.place-order{

    width:100%;

    padding:18px;

    border:none;

    border-radius:40px;

    background:var(--primary);

    color:white;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.place-order:hover{

    background:var(--primary-dark);

}

/*==============================
EMPTY CART
==============================*/

.empty-cart{

    text-align:center;

    color:#777;

    padding:80px 20px;

}

.empty-cart h3{

    margin-top:20px;

    color:#444;

}

/*==============================
SCROLLBAR
==============================*/

#cartItems::-webkit-scrollbar{

    width:8px;

}

#cartItems::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

#cartDrawer{

width:100%;

}

.checkout-box{

padding:25px;

}

.cart-header h2{

font-size:26px;

}

}

/*====================================================
SOHA BURGERS
STYLE.CSS
PART 4 OF 5
ANIMATIONS & UI
====================================================*/

/*==============================
TOAST NOTIFICATION
==============================*/

.toast{

    position:fixed;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    background:var(--primary);

    color:#fff;

    padding:16px 30px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    box-shadow:0 15px 35px rgba(0,0,0,.18);

    opacity:0;

    pointer-events:none;

    transition:.35s;

    z-index:999999;

}

.toast.show{

    opacity:1;

    bottom:55px;

}

/*==============================
LOADER
==============================*/

.loader{

    width:55px;

    height:55px;

    border:5px solid #ececec;

    border-top:5px solid var(--primary);

    border-radius:50%;

    animation:spin .8s linear infinite;

    margin:auto;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==============================
PAGE FADE
==============================*/

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/*==============================
FADE LEFT
==============================*/

.fade-left{

    opacity:0;

    transform:translateX(-80px);

    transition:all .8s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

/*==============================
FADE RIGHT
==============================*/

.fade-right{

    opacity:0;

    transform:translateX(80px);

    transition:all .8s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/*==============================
ZOOM
==============================*/

.zoom{

    opacity:0;

    transform:scale(.8);

    transition:.7s;

}

.zoom.show{

    opacity:1;

    transform:scale(1);

}

/*==============================
BUTTON EFFECT
==============================*/

button,

.order-btn,

.add-btn,

.apply-btn,

.place-order{

    position:relative;

    overflow:hidden;

}

button::before,

.order-btn::before,

.add-btn::before,

.apply-btn::before,

.place-order::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.25);

    transition:.45s;

}

button:hover::before,

.order-btn:hover::before,

.add-btn:hover::before,

.apply-btn:hover::before,

.place-order:hover::before{

    left:100%;

}

/*==============================
IMAGE EFFECT
==============================*/

.menu-image{

    overflow:hidden;

}

.menu-image img{

    transition:.45s;

}

.menu-card:hover img{

    transform:scale(1.08);

}

/*==============================
CARD HOVER
==============================*/

.menu-card{

    transition:.35s;

}

.menu-card:hover{

    transform:translateY(-10px);

}

/*==============================
CART ICON
==============================*/

.cart-icon{

    animation:cartFloat 3s infinite ease-in-out;

}

@keyframes cartFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-5px);

}

100%{

transform:translateY(0);

}

}

/*==============================
CART BADGE
==============================*/

#cartBadge{

    animation:pulseBadge 2s infinite;

}

@keyframes pulseBadge{

0%{

transform:scale(1);

}

50%{

transform:scale(1.18);

}

100%{

transform:scale(1);

}

}

/*==============================
SECTION TITLE
==============================*/

.section-title{

    position:relative;

    display:inline-block;

}

.section-title::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-12px;

    width:90px;

    height:5px;

    background:var(--primary);

    border-radius:20px;

}

/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==============================
SELECTION
==============================*/

::selection{

    background:var(--primary);

    color:#fff;

}

/*==============================
UTILITY CLASSES
==============================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.hidden{

    display:none !important;

}

.show-flex{

    display:flex !important;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:768px){

.toast{

width:90%;

text-align:center;

padding:15px;

}

.section-title::after{

width:70px;

}

.loader{

width:45px;

height:45px;

}

}


/*====================================================
SOHA BURGERS
STYLE.CSS
PART 5 OF 5
FINAL STYLES
====================================================*/

/*==============================
FOOTER
==============================*/

footer{

    background:#ffffff;

    padding:70px 20px 40px;

    margin-top:80px;

    border-top:3px solid var(--primary);

}

.footer-container{

    width:92%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:15px;

}

.footer-logo p{

    color:#666;

    line-height:1.8;

}

.footer-links h3,

.footer-contact h3{

    color:var(--primary);

    margin-bottom:20px;

    font-size:22px;

}

.footer-links ul{

    list-style:none;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#444;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer-contact p{

    margin-bottom:12px;

    color:#555;

}

/*==============================
SOCIAL ICONS
==============================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    transition:.3s;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:var(--primary-dark);

}

/*==============================
COPYRIGHT
==============================*/

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid #e8e8e8;

    color:#666;

    font-size:14px;

}

/*==============================
WHATSAPP BUTTON
==============================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    z-index:99999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/*==============================
BACK TO TOP
==============================*/

#topBtn{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    cursor:pointer;

    display:none;

    font-size:22px;

    transition:.3s;

    z-index:99999;

}

#topBtn:hover{

    background:var(--primary-dark);

    transform:translateY(-5px);

}

/*==============================
INPUTS
==============================*/

input,
textarea,
select{

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(215,25,32,.12);

}

/*==============================
SMOOTH CARD SHADOW
==============================*/

.menu-card,
.cart-item,
.checkout-box{

    transition:.35s;

}

.menu-card:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*==============================
DISABLE SELECT
==============================*/

button,
img{

    user-select:none;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

justify-content:center;

}

.footer-logo h2{

font-size:34px;

}

.whatsapp{

width:58px;

height:58px;

font-size:26px;

right:18px;

bottom:18px;

}

#topBtn{

right:18px;

bottom:90px;

width:50px;

height:50px;

}

}

@media(max-width:480px){

.footer-logo h2{

font-size:28px;

}

.footer-links h3,

.footer-contact h3{

font-size:20px;

}

.copyright{

font-size:13px;

}

}

/*==============================
END OF FILE
==============================*/

/*=====================================
OFFERS SECTION
=====================================*/

#offers{

    width:92%;

    max-width:1400px;

    margin:80px auto;

    padding:80px 40px;

    background:linear-gradient(135deg,#d71920,#ff4545);

    border-radius:30px;

    color:#fff;

}

.offers-subtitle{

    text-align:center;

    font-size:20px;

    margin:20px auto 50px;

    color:#fff;

}

.offers-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.offer-card{

    background:#fff;

    color:#222;

    border-radius:20px;

    padding:35px;

    text-align:center;

    position:relative;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.offer-card:hover{

    transform:translateY(-12px) scale(1.03);

    box-shadow:0 25px 55px rgba(215,25,32,.22);

}

.offer-card h3
{

    font-size:48px;

    font-weight:900;

    color:#d71920;

    margin-bottom:12px;

    text-transform:uppercase;

    letter-spacing:1px;

    text-shadow:1px 2px 5px rgba(0,0,0,.12);

}

.offer-card h4{

    font-size:22px;

    font-weight:800;

    color:#222;

    margin-bottom:18px;

    letter-spacing:.5px;

}


.offer-card p{

    font-size:17px;

    font-weight:600;

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

.offer-tag{

    position:absolute;

    top:15px;

    right:15px;

    background:#ff9800;

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

}

.copy-offer{

    background:#d71920;

    color:#fff;

    border:none;

    padding:14px 28px;

    border-radius:40px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.copy-offer:hover{

    background:#111;

}

#offers .section-title{

    color:#fff;

}

#offers .section-title::after{

    background:#fff;

}


/*==================================
CONTACT SECTION
==================================*/

#contact{

    width:92%;

    max-width:1400px;

    margin:80px auto;

    padding:80px 40px;

    background:#ffffff;

    border-radius:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

#contact .section-title{

    text-align:center;

    margin-bottom:15px;

}

.contact-subtitle{

    text-align:center;

    color:#666;

    font-size:18px;

    margin-bottom:50px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.contact-card{

    background:#fafafa;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    border:2px solid transparent;

}

.contact-card:hover{

    transform:translateY(-12px) scale(1.03);

    border-color:#d71920;

    box-shadow:0 25px 55px rgba(215,25,32,.18);

}


.contact-card i{

    font-size:50px;

    color:#d71920;

    margin-bottom:20px;

}

.contact-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;

}

.contact-card p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}

.logo img{

    width:65px;

    height:65px;

    object-fit:contain;

    border-radius:50%;

    background:#fff;

    padding:5px;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

}

@media(max-width:768px){

.logo img{

    width:50px;

    height:50px;

}

.logo-text h2{

    font-size:22px;

}

.logo-text span{

    display:none;

}

}