/* css/style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0d11;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 32px;
    font-weight: 700;
}

.logo span {
    color: #c70d23;
}

.tagline {
    font-size: 12px;
    color: #aaa;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c70d23;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding-top: 120px;
}

.hero-left h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: #c70d23;
}

.hero-left p {
    color: #c7c7c7;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.gold-btn {
    background: #c70d23;
    color: #111;
}

.dark-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn:hover {
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 20px;
    min-width: 130px;
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    color: #c70d23;
    font-size: 28px;
}

.stat-box p {
    margin: 0;
    font-size: 14px;
}

.hero-right img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* FEATURES */

.features,
.about,
.process,
.contact {
    padding: 120px 0;
}

.features {
    background: #11151c;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.section-title p {
    color: #aaa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #161b24;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: #c70d23;
}

.feature-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-card p {
    color: #bdbdbd;
    line-height: 1.8;
}

/* ABOUT */

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-text p {
    color: #bdbdbd;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-list {
    margin: 35px 0;
}

.about-list div {
    margin-bottom: 14px;
    color: #ddd;
}

/* PROCESS */

.process {
    background: #11151c;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #161b24;
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
}

.step-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(199, 13, 35);
    margin-bottom: 20px;
}

.process-card h3 {
    margin-bottom: 15px;
}

.process-card p {
    color: #bdbdbd;
    line-height: 1.7;
}

/* SHOWCASE */

.showcase {
    height: 500px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=2070') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.showcase-content h2 {
    font-size: 54px;
    max-width: 850px;
    margin: auto;
    margin-bottom: 25px;
}

.showcase-content p {
    color: #ddd;
    margin-bottom: 35px;
}

/* CONTACT */

.contact-box {
    background: #161b24;
    padding: 60px;
    border-radius: 30px;
    max-width: 850px;
    margin: auto;
}

.contact-box h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 35px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 15px;
    background: #0f131a;
    color: #fff;
    font-size: 15px;
}

textarea {
    min-height: 150px;
    resize: none;
}

button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    background: #c70d23;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* FOOTER */

footer {
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #888;
}

/* MOBILE */

@media(max-width:950px) {

    .hero-content,
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .showcase-content h2 {
        font-size: 36px;
    }

}

/* STORAGE FEATURES */

.storage-features {
    padding: 120px 0;
    background:
        radial-gradient(circle at top right,
            rgba(199, 13, 35, 0.18),
            transparent 35%),
        #0b0d11;
    overflow: hidden;
}

.storage-top {
    text-align: center;
    max-width: 950px;
    margin: auto;
    margin-bottom: 70px;
}

.mini-title {
    color: #c70d23;
    letter-spacing: 6px;
    font-size: 13px;
    font-weight: 600;
}

.storage-top h2 {
    font-size: 56px;
    line-height: 1.15;
    margin: 25px 0;
}

.storage-top p {
    color: #b9bcc5;
    line-height: 1.9;
    font-size: 17px;
}

.storage-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* LEFT SIDE */

.storage-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.storage-item {
    display: flex;
    gap: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px;
    border-radius: 24px;
    transition: 0.3s;
    backdrop-filter: blur(12px);
}

.storage-item:hover {
    transform: translateY(-5px);
    border-color: #c70d23;
    background: rgba(199, 13, 35, 0.06);
}

.icon {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #c70d23;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.storage-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.storage-item p {
    color: #b8bcc7;
    line-height: 1.8;
}

/* RIGHT SIDE */

.storage-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-card {
    width: 360px;
    background: linear-gradient(180deg, #1a1f2b, #10141c);
    border-radius: 40px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.phone-card img {
    width: 100%;
    border-radius: 28px;
}

.floating-card {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 320px;
    background: #c70d23;
    color: #111;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.floating-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.floating-card p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.small-icon {
    background: rgba(255, 255, 255, 0.25);
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* MOBILE */

@media(max-width:950px) {

    .storage-grid {
        grid-template-columns: 1fr;
    }

    .storage-top h2 {
        font-size: 40px;
    }

    .phone-card {
        width: 100%;
    }

    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        width: 100%;
    }

}

/* CONTACT SECTION */

.contact {
    padding: 120px 0;
    background: #11151c;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #161b24;
    padding: 70px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h2 {
    font-size: 48px;
    margin: 20px 0;
}

.contact-info p {
    color: #b8bcc7;
    line-height: 1.8;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #c70d23;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.contact-item h4 {
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 16px;
    background: #0f131a;
    color: #fff;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 160px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 16px;
    background: #c70d23;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-4px);
}

@media(max-width:950px) {

    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .contact-info h2 {
        font-size: 38px;
    }

}


/* SOLUTIONS SECTION */

.solutions-section {
    padding: 130px 0;
    background:
        radial-gradient(circle at top right,
            rgba(199, 13, 35, 0.12),
            transparent 35%),
        #07090d;
}

.solutions-heading {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.mini-title {
    color: #c70d23;
    letter-spacing: 7px;
    font-size: 13px;
    font-weight: 600;
}

.solutions-heading h2 {
    font-size: 62px;
    line-height: 1.1;
    margin: 25px 0;
}

.solutions-heading h2 span {
    color: #c70d23;
}

.solutions-heading p {
    color: #b8bcc7;
    line-height: 1.9;
    font-size: 17px;
}

/* GRID */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

/* CARD */

.solution-card {
    background: rgba(12, 15, 22, 0.95);
    border: 1px solid rgba(199, 13, 35);
    border-radius: 35px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    background: rgba(199, 13, 35, 0.08);
    border-radius: 50%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: #c70d23;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.card-content {
    position: relative;
    z-index: 2;
}

.solution-card h3 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.solution-card p {
    color: #c3c7cf;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* TAGS */

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-tags span {
    padding: 10px 18px;
    border: 1px solid #c70d23;
    border-radius: 50px;
    font-size: 13px;
    color: #fff;
}

/* IMAGE */

.card-image {
    margin-top: 35px;
    display: flex;
    justify-content: flex-end;
}

.card-image img {
    width: 140px;
    height: auto;
    object-fit: contain;
    transition: 0.35s;
}

.solution-card:hover .card-image img {
    transform: scale(1.08);
}

/* MOBILE */

@media(max-width:950px) {

    .solutions-heading h2 {
        font-size: 42px;
    }

    .solution-card {
        min-height: auto;
    }

    .solution-card h3 {
        font-size: 28px;
    }

    .card-image {
        justify-content: center;
    }

    .card-image img {
        width: 120px;
    }

}
/* LOCATION SECTION */

.location-section{
    padding:130px 0;
    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,0.08),
    transparent 35%),
    #0b0d11;
    overflow:hidden;
}

.location-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* LEFT */

.location-content{
    position:relative;
    z-index:2;
}

.location-content h2{
    font-size:58px;
    line-height:1.1;
    margin:25px 0;
    max-width:700px;
}

.location-content h2 span{
    color:#c70d23;
}

.location-content p{
    color:#b8bcc7;
    line-height:1.95;
    font-size:17px;
    margin-bottom:25px;
}

/* TAGS */

.location-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin:40px 0;
}

.location-tags span{
    padding:12px 22px;
    border-radius:50px;
    background:rgba(212,175,55,0.08);
    border:1px solid rgba(212,175,55,0.25);
    color:#fff;
    font-size:14px;
    transition:0.3s;
}

.location-tags span:hover{
    background:#c70d23;
    color:#111;
}

/* BUTTON */

.location-btn{
    display:inline-block;
    padding:18px 34px;
    background:#c70d23;
    color:#111;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.location-btn:hover{
    transform:translateY(-5px);
}

/* IMAGE */

.location-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.location-image::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,0.12);
    border-radius:50%;
    filter:blur(80px);
}

.location-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    object-fit:contain;
    animation:floatCity 5s ease-in-out infinite;
}

/* ANIMATION */

@keyframes floatCity{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* MOBILE */

@media(max-width:950px){

.location-wrapper{
    grid-template-columns:1fr;
}

.location-content h2{
    font-size:42px;
}

.location-image{
    margin-top:20px;
}

.location-image img{
    max-width:400px;
}

}