:root {
    --primary: #ff6a00;
    --dark: #1a1a1a;
    --gray: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #000;
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    transition: 0.4s;
}

header.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

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

.logo-box {
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.8rem;
    color: #fff;
}

.brand-name span {
    display: block;
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
    line-height: 1.2;
}

.brand-name small {
    color: var(--primary);
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

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

.nav-call {
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.close-menu {
    display: none;
}

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1500&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 20px;
}

.top-tag { 
    color: var(--primary); 
    font-weight: 700; 
    border: 2px solid var(--primary); 
    padding: 8px 25px; 
    border-radius: 50px; 
    display: inline-block; 
    margin-bottom: 25px; 
    background: rgba(255, 106, 0, 0.05); 
    
    animation: pulse-border 2s infinite; 
    transition: 0.3s;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7);
    }
    70% {
        transform: scale(1.05); 
        box-shadow: 0 0 0 15px rgba(255, 106, 0, 0); 
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-main {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 5px;
    font-weight: 900;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

.btn-sub {
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 5px;
    font-weight: 900;
    display: inline-block;
    margin: 10px;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.4);
}

/* About Section */
.section-padding {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0 var(--primary);
}

.badge {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin: 15px 0 25px;
    line-height: 1.3;
}

.check-items {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.check {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check i {
    color: var(--primary);
}

/* Features */
.bg-dark {
    background: var(--dark);
}

.white h2 {
    color: #fff;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.line {
    width: 80px;
    height: 5px;
    background: var(--primary);
    margin: 20px auto;
}

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

.f-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: 0.4s;
}

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

.f-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: 0.3s;
}

.f-card:hover i {
    color: #fff;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.g-item {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    cursor: pointer;
}

.g-item:hover img {
    transform: scale(1.1);
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.wa {
    background: #25d366;
    animation: pulse 2s infinite;
}

.phone {
    background: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.f-col ul {
    list-style: none;
    margin-top: 20px;
}

.f-col li {
    margin-bottom: 10px;
}

.f-col a {
    color: #bbb;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000;
        transition: 0.4s;
        padding: 80px 40px;
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        text-align: right;
        width: 100%;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 2rem;
        color: #fff;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .check-items {
        grid-template-columns: 1fr;
    }
}
.bg-orange { background: var(--primary); color: #fff; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat-box h3 { font-size: 3rem; font-weight: 900; margin-bottom: 5px; }
.stat-box p { font-size: 1.1rem; font-weight: 600; opacity: 0.9; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.step-card { background: #fff; padding: 40px 30px; border-radius: 15px; border-bottom: 5px solid var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; position: relative; }
.step-card:hover { transform: translateY(-10px); }
.step-num { position: absolute; top: 10px; left: 20px; font-size: 3rem; font-weight: 900; color: rgba(255, 106, 0, 0.1); }
.step-card h4 { color: var(--primary); font-size: 1.4rem; margin-bottom: 15px; }

.bg-gray { background: var(--gray); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; padding: 25px; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.faq-item h4 { color: var(--dark); margin-bottom: 10px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.faq-item p { color: #666; font-size: 0.95rem; }

.final-cta .cta-box { background: var(--dark); color: #fff; padding: 60px 40px; border-radius: 20px; text-align: center; border: 2px solid var(--primary); }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 15px; }
.final-cta p { margin-bottom: 35px; font-size: 1.2rem; color: #bbb; }
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

.pulse { animation: pulse-red 2s infinite; }
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 106, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

@media (max-width: 768px) {
    
    .hero {
        padding-top: 60px;
    }
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    .hero p {
        font-size: 1rem !important;
        padding: 0 10px;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn-main, .btn-sub {
        width: 90%; 
        margin: 0 !important;
        padding: 15px !important;
    }

    .stats-flex {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 20px !important;
        padding: 0 10px;
    }
    .stat-box h3 {
        font-size: 2rem !important; 
    }
    .stat-box p {
        font-size: 0.9rem;
    }

    .about-grid {
        gap: 30px;
    }
    .about-text h2 {
        font-size: 1.6rem !important;
        text-align: center;
    }
    .check-items {
        grid-template-columns: 1fr; 
        text-align: right;
        padding-right: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .step-card {
        padding: 30px 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important; 
        text-align: center !important;
        gap: 30px;
    }
    .f-col {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    .f-col ul {
        padding: 0;
    }
    .f-col li {
        margin-bottom: 10px;
    }

    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    body, html {
        overflow-x: hidden;
    }
}

.bg-light { background-color: #fcfdfc; }

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.s-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.s-icon-wrap i {
    font-size: 2rem;
    color: var(--primary);
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.s-list {
    list-style: none;
    padding: 0;
}

.s-list li {
    font-size: 0.9rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .service-item {
        padding: 30px 20px;
        text-align: center;
    }
    .s-icon-wrap {
        margin: 0 auto 20px;
    }
    .s-list li {
        justify-content: center;
    }
}