/* ===========================
   AXSINO Security Systems
   style.css
=========================== */

:root {

    --bg: #050505;
    --bg-secondary: #0b0b0b;

    --card: rgba(255,255,255,.04);

    --border: rgba(255,255,255,.08);

    --text: #ffffff;

    --muted: #9ca3af;

    --blue: #2563eb;

    --blue-light: #60a5fa;

    --radius: 24px;

    --shadow:
        0 20px 60px rgba(37,99,235,.18);

}

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

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

html{
    scroll-behavior:smooth;
}

body{

    opacity:0;
    font-family:'Vazirmatn',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.9;
}

img{

    display:block;

    width:100%;
}

a{

    text-decoration:none;

    color:inherit;
}

ul{

    list-style:none;
}

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

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#080808;
}

::-webkit-scrollbar-thumb{

    background:var(--blue);

    border-radius:999px;
}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:min(1400px,92%);

    margin:auto;
}

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

.header{

    position:fixed;

    top:0;
    right:0;
    left:0;

    z-index:999;

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

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);
}

.nav{

    height:92px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.brand{

    display:flex;

    align-items:center;

    gap:15px;
}

.brand img{

    width:72px;

    height:72px;

    object-fit:contain;
}

.brand h2{

    font-size:32px;

    font-weight:900;

    letter-spacing:2px;
}

.brand span{

    font-size:11px;

    letter-spacing:4px;

    color:var(--muted);
}

nav{

    display:flex;

    gap:36px;
}

nav a{

    color:#d4d4d8;

    transition:.3s;
}

nav a:hover{

    color:var(--blue-light);
}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        var(--blue),
        #4338ca
    );

    color:#fff;

    font-weight:700;

    transition:.35s;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);
}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.15);

    transition:.35s;
}

.btn-outline:hover{

    border-color:var(--blue);

    color:var(--blue-light);
}

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

.hero{

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(37,99,235,.2),
        transparent 55%
    );
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.2),
        rgba(0,0,0,.75)
    );
}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;
}

.badge{

    display:inline-flex;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(37,99,235,.3);

    color:var(--blue-light);

    margin-bottom:30px;
}

.hero h1{

    font-size:clamp(50px,8vw,96px);

    font-weight:900;

    line-height:1.15;
}

.hero h1 span{

    display:block;

    background:
    linear-gradient(
        90deg,
        #60a5fa,
        #2563eb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hero p{

    margin-top:30px;

    color:var(--muted);

    font-size:20px;

    max-width:700px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;
}

/* ===========================
   SECTIONS
=========================== */

.section{

    padding:120px 0;
}

.dark{

    background:var(--bg-secondary);
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    font-size:clamp(36px,5vw,64px);

    font-weight:900;

    margin-bottom:14px;
}

.section-title p{

    color:var(--muted);
}

/* ===========================
   SERVICES
=========================== */

.cards{

    display:grid;

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

    gap:30px;
}

.card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:40px;

    transition:.4s;
}

.card:hover{

    transform:translateY(-10px);

    border-color:rgba(37,99,235,.4);

    box-shadow:var(--shadow);
}

.icon{

    font-size:48px;

    margin-bottom:20px;
}

.card h3{

    margin-bottom:15px;

    font-size:26px;
}

.card p{

    color:var(--muted);
}

/* ===========================
   GLASS BOX
=========================== */

.glass{

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

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:32px;

    padding:50px;
}

.glass h3{

    font-size:38px;

    margin-bottom:20px;
}

.glass p{

    color:var(--muted);

    margin-bottom:30px;
}

.glass ul{

    display:grid;

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

    gap:15px;
}

.glass li{

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

    border:1px solid rgba(255,255,255,.05);

    padding:14px 18px;

    border-radius:14px;
}

/* ===========================
   FEATURE GRID
=========================== */

.feature-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:40px;
}

.feature-grid h4{

    margin-bottom:20px;

    font-size:24px;
}

.feature-grid li{

    margin-bottom:12px;
}

/* ===========================
   GALLERY
=========================== */

.gallery-section{

    padding:120px 0;
}

.gallery-grid{

    display:grid;

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

    gap:30px;
}

.gallery-card{

    overflow:hidden;

    border-radius:28px;

    background:#111;

    border:1px solid var(--border);

    transition:.4s;
}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);
}

.gallery-card img{

    height:260px;

    object-fit:cover;

    transition:.6s;
}

.gallery-card:hover img{

    transform:scale(1.08);
}

.gallery-content{

    padding:24px;
}

.gallery-content h3{

    margin-bottom:10px;
}

.gallery-content p{

    color:var(--muted);
}

/* ===========================
   PROCESS
=========================== */

.process-section{

    padding:130px 0;
}

.process-grid{

    display:grid;

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

    gap:25px;
}

.process-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;
}

.process-card span{

    font-size:52px;

    font-weight:900;

    color:var(--blue);
}

.process-card h3{

    margin:15px 0;
}

/* ===========================
   CTA
=========================== */

.cta-section{

    padding:140px 0;
}

.cta-box{

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(67,56,202,.18)
    );

    border:1px solid rgba(37,99,235,.3);

    border-radius:40px;

    padding:80px 50px;
}

.cta-box h2{

    font-size:56px;

    margin-bottom:20px;
}

.cta-box p{

    max-width:700px;

    margin:0 auto 40px;

    color:var(--muted);
}

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

.contact-section{

    padding:120px 0;
}

.contact-grid{

    display:grid;

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

    gap:25px;
}

.contact-card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:24px;

    padding:35px;

    text-align:center;
}

.contact-card h3{

    margin-bottom:10px;
}

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

.footer{

    border-top:1px solid var(--border);

    margin-top:50px;
}

.footer-content{

    padding:70px 0;

    display:grid;

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

    gap:40px;
}

.footer-logo{

    width:90px;

    margin-bottom:15px;
}

.footer h4{

    margin-bottom:20px;
}

.footer li{

    margin-bottom:10px;

    color:var(--muted);
}

.footer a:hover{

    color:var(--blue-light);
}

.copyright{

    text-align:center;

    border-top:1px solid var(--border);

    padding:25px;

    color:var(--muted);
}

/* ===========================
   GSAP CLASSES
=========================== */

.reveal{

    opacity:0;

    transform:translateY(60px);
}

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

@media(max-width:1024px){

    nav{

        display:none;
    }

    .hero h1{

        font-size:64px;
    }

    .feature-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero{

        text-align:center;
    }

    .hero-buttons{

        justify-content:center;
    }

    .brand h2{

        font-size:24px;
    }

    .glass{

        padding:30px;
    }

    .cta-box h2{

        font-size:36px;
    }
}