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

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#333;
    background:#fff;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

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

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

/* ================================
   HEADINGS
=================================*/
h1,h2,h3,h4{
    margin-bottom:15px;
}

h1{ font-size:38px; }
h2{ font-size:28px; }
h3{ font-size:20px; }

/* ================================
   BUTTONS
=================================*/
.btn{
    display:inline-block;
    padding:10px 18px;
    background:#000;
    color:#fff;
    border-radius:5px;
    font-size:14px;
}

.btn:hover{
    background:#333;
}

/* ================================
   SECTIONS
=================================*/
.section{
    padding:60px 0;
}

/* ================================
   GRID SYSTEM
=================================*/
.grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

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

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

/* ================================
   CARD
=================================*/
.card{
    background:#fff;
    border-radius:10px;
    border:1px solid #eee;
    padding:20px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ================================
   FORM
=================================*/
input, textarea, select{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:14px;
}

textarea{
    resize:vertical;
}

button{
    cursor:pointer;
}

/* ================================
   TABLE
=================================*/
table{
    width:100%;
    border-collapse:collapse;
}

table th, table td{
    padding:10px;
    border:1px solid #ddd;
    text-align:left;
}

table th{
    background:#000;
    color:#fff;
}

/* ================================
   ALERT MESSAGES
=================================*/
.success{
    background:#d4edda;
    color:#155724;
    padding:10px;
    border-radius:5px;
    margin-bottom:15px;
}

.error{
    background:#f8d7da;
    color:#721c24;
    padding:10px;
    border-radius:5px;
    margin-bottom:15px;
}

/* ================================
   UTILITIES
=================================*/
.text-center{ text-align:center; }

.mt-20{ margin-top:20px; }
.mt-30{ margin-top:30px; }
.mt-40{ margin-top:40px; }

.mb-20{ margin-bottom:20px; }
.mb-30{ margin-bottom:30px; }
.mb-40{ margin-bottom:40px; }

/* ================================
   RESPONSIVE
=================================*/
@media(max-width:1024px){
    .grid-4{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    h1{ font-size:28px; }
    h2{ font-size:22px; }

    .grid-2,
    .grid-3,
    .grid-4{
        grid-template-columns:1fr;
    }

    .container{
        width:95%;
    }

}

@media(max-width:480px){

    h1{ font-size:22px; }
    h2{ font-size:18px; }

}

/* ======================================
   WHATSAPP FLOAT (RIGHT BOTTOM)
======================================*/
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    font-size:14px;
    z-index:999999;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    font-weight:600;
}

.whatsapp-float:hover{
    transform:scale(1.05);
}

/* ======================================
   GET QUOTE (LEFT VERTICAL CENTER)
======================================*/
.quote-btn{
    position:fixed;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:#c40000;
    color:#fff;
    padding:16px 10px;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    font-weight:bold;
    letter-spacing:1px;
    z-index:999999;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
}

.quote-btn:hover{
    background:#8f0000;
}

/* ======================================
   FOOTER SUBSCRIBE (CLEAN PREMIUM)
======================================*/
.footer-subscribe{
    margin-top:20px;
    max-width:400px;
}

.footer-subscribe form{
    position:relative;
}

.footer-subscribe input{
    width:100%;
    padding:16px 130px 16px 20px;
    border-radius:50px;
    border:none;
    outline:none;
    font-size:14px;
    background:#f2f2f2;
}

.footer-subscribe button{
    position:absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
    padding:10px 22px;
    border:none;
    border-radius:30px;
    background:#c40000;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.footer-subscribe button:hover{
    background:#8f0000;
}

#subscribeMsg{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#4CAF50;
}

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

.social-links{
    margin-top:15px;
}

.social-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-right:10px;
    border-radius:50%;
    background:#222;
    color:#fff;
    font-size:16px;
    transition:0.3s ease;
}

.social-links a:hover{
    background:#c40000;
    transform:translateY(-3px);
}

/* ===== SOCIAL ICONS FORCE INLINE ===== */

.social-links{
    margin-top:15px;
}

.social-links a{
    display:inline-block !important;
    width:auto !important;
    margin-right:15px;
    font-size:22px;
    color:#fff;
}

.social-links a i{
    pointer-events:none;
}