/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #0A0A0A 40%, #1A1A1A 80%);
    color: #FFFFFF;
}

/* NAVBAR */
.navbar {
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.6);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-toggle {
    z-index: 1100;
    position: relative;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.navbar nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #A0A0A0;
    font-size: 14px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #FFFFFF;
}

/* HERO */
.hero {
    min-height: 90vh;
    padding: 100px 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, #0A0A0A 40%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

/* LEFT SIDE */
.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    color: #A0A0A0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}

/* PRIMARY */
.primary {
    border: 1px solid #C0C0C0;
    color: #FFFFFF;
}

.primary:hover {
    background: #C0C0C0;
    color: #0A0A0A;
}

/* SECONDARY */
.secondary {
    color: #A0A0A0;
}

.secondary:hover {
    color: #FFFFFF;
}

/* RIGHT SIDE LOGO */
.hero-logo img {
    width: 350px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}



/* PAGE HERO */
.page-hero {
    padding: 140px 20px 80px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero p {
    color: #A0A0A0;
    font-size: 15px;
}

/* SERVICES SECTION */
.services {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

.service-block {
    margin-bottom: 40px;
}

.service-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    margin-bottom: 10px;
}

.tagline {
    color: #A0A0A0;
    margin-bottom: 15px;
}

.service-block ul {
    list-style: none;
}

.service-block li {
    margin-bottom: 8px;
    color: #C0C0C0;
}

.preview-card:active {
    transform: scale(0.98);
}


/* DIVIDER */
.divider {
    height: 1px;
    background: #2a2a2a;
    margin: 40px 0;
}

.preview-card {
    display: block;
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
}

.preview-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
    opacity: 0;
    transition: 0.4s;
     pointer-events: none;
}

.preview-card:hover::before {
    opacity: 1;
}

.preview-card::after {
    content: "Explore →";
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #A0A0A0;
    transition: 0.3s;
}

.preview-card:hover::after {
    color: #FFFFFF;
}

.preview-card:hover {
    border-color: #C0C0C0;
    box-shadow: 0 10px 40px rgba(255,255,255,0.12);
}

.mini-proof {
    text-align: center;
    padding: 60px 20px;
}

.mini-proof p {
    color: #A0A0A0;
    font-size: 14px;
}


/* PACKAGES */
/* ===== SERVICES PAGE ELITE UPGRADE ===== */



/* PACKAGE CARD */
.package {
    text-align: center;
    width: 280px;
    padding: 30px 25px;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    background: linear-gradient(145deg, #121212, #0d0d0d);
    transition: all 0.35s ease;
    overflow: hidden;
}

/* PACKAGES HEADING */
.packages h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    margin-bottom: 40px;
    text-align: center;
}

.package-grid {
    display: flex;
    justify-content: space-evenly;
        gap: 20px; /* ADD THIS */
    flex-wrap: wrap; /* IMPORTANT for mobile */
}



/* HOVER EFFECT (PREMIUM FEEL) */
.package:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #C0C0C0;
    box-shadow: 0 10px 30px rgba(255,255,255,0.08);
}

/* PACKAGE TITLE */
.package h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* TEXT */
.package p {
    font-size: 14px;
    color: #A0A0A0;
    line-height: 1.5;
}

/* PRICE */
.package .price {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #C0C0C0;
}

/* BUTTON INSIDE PACKAGE */
.package .btn {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 18px;
    border: 1px solid #C0C0C0;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.package .btn:hover {
    background: #C0C0C0;
    color: #0A0A0A;
}

/* FEATURED (GROWTH) */
.featured {
    border: 1px solid #C0C0C0;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255,255,255,0.1);
}

/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: #C0C0C0;
    color: #0A0A0A;
    font-size: 11px;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 500;
}

/* PROOF SECTION */
.proof {
    text-align: center;
    padding: 60px 20px;
}

.proof h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 25px;
}

.proof ul {
    list-style: none;
}

.proof li {
    margin: 10px 0;
    color: #C0C0C0;
    font-size: 14px;
}

/* CTA IMPROVEMENT */
.cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 26px;
}

/* WHATSAPP BUTTON STRONGER */
.whatsapp-btn {
    border: 1px solid #C0C0C0;
    padding: 14px 28px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    display: inline-block;
}

.whatsapp-btn:hover {
    background: #C0C0C0;
    color: #0A0A0A;
    transform: scale(1.05);
}

/* ===== SERVICES PREVIEW SECTION ===== */

.services-preview {
    text-align: center;
    padding: 100px 20px;
}

.services-preview h2 {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    margin-bottom: 50px;
}

/* GRID */
.preview-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD */
.preview-card {
    width: 300px;
    padding: 30px 25px;
    background: linear-gradient(145deg, #121212, #0d0d0d);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.preview-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #C0C0C0;
    box-shadow: 0 10px 30px rgba(255,255,255,0.08);
}

/* TITLE */
.preview-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.preview-card p {
    font-size: 14px;
    color: #A0A0A0;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* LINK BUTTON */
.preview-card a {
    text-decoration: none;
    font-size: 13px;
    color: #C0C0C0;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

/* HOVER LINK */
.preview-card a:hover {
    color: #FFFFFF;
    border-color: #C0C0C0;
}


/* GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 40px 80px;
}

.portfolio-grid a{
    color: white;
}

.portfolio-about p{
    font-size: 18px;
}

.portfolio-about {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* PROJECT CARD */
.project {
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: 0.35s ease;
    cursor: pointer;
    position: relative;
    
}


.project::after {
    content: "View Project";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
}

.project:hover::after {
    opacity: 1;
}

/* IMAGE */
.project img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TEXT */
.project h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.project p {
    padding: 0 15px 15px;
    color: #A0A0A0;
    font-size: 14px;
}

/* VIDEO MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.modal video {
    width: 70%;
    max-width: 900px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    color: #FFFFFF;
    cursor: pointer;
}

/* CTA */
.cta {
    text-align: center;
    padding: 100px 20px;
}

.cta h2 {
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
}



/* WHATSAPP BUTTON */
.contact-cta {
    text-align: center;
    margin: 40px 0;
}

.whatsapp-btn {
    border: 1px solid #C0C0C0;
    padding: 14px 30px;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #C0C0C0;
    color: #0A0A0A;
}

/* FORM */
.contact-form {
    max-width: 600px;
    margin: auto;
    padding: 40px 20px 80px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px;
    background: #121212;
    border: 1px solid #2a2a2a;
    color: #FFFFFF;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #C0C0C0;
}

/* BUTTON */
.contact-form button {
    padding: 12px;
    background: transparent;
    border: 1px solid #C0C0C0;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #C0C0C0;
    color: #0A0A0A;
}

/* CONTACT FORM HEADING */

.contact-heading {
    text-align: center;
    margin-bottom: 25px;
}

.contact-heading h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.contact-heading p {
    font-size: 13px;
    color: #A0A0A0;
    letter-spacing: 0.3px;
}

/* ABOUT SECTION */
.about-section {
    max-width: 800px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
}

.about-section p {
    color: #A0A0A0;
    line-height: 1.6;
}

/* LEADERS */
.leaders {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.leader {
    background: #121212;
    border: 1px solid #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    width: 300px;
}

.leader h3 {
    margin-bottom: 5px;
}

.leader span {
    font-size: 13px;
    color: #C0C0C0;
}

.leader p {
    margin-top: 10px;
    font-size: 14px;
    color: #A0A0A0;
}


/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.navbar nav{
    transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .navbar {
        padding: 15px 20px;
    }


@media (max-width: 768px) {

    .navbar nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0A0A0A;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        border-top: 1px solid #2a2a2a;
        opacity: 0;
        transform: translateY(-10px);
    }

    .navbar nav.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    }
}

    .navbar nav a {
        margin: 10px 0;
        font-size: 16px;
    }

}



/* MOBILE BASE */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    p {
        font-size: 14px;
    }

}




@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-logo img {
        width: 220px;
        margin-top: 30px;
    }

}


@media (max-width: 768px) {

    .services {
        flex-direction: column;
        padding: 40px 20px;
    }

}


@media (max-width: 768px) {

    .package-grid {
        flex-direction: column;
        align-items: center;
    }

    .package {
        width: 100%;
        max-width: 320px;
    }

}


@media (max-width: 768px) {

    .portfolio-grid {
        padding: 20px;
        gap: 20px;
    }

    .project img {
        height: 160px;
    }

}


@media (max-width: 768px) {

    .contact-form {
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 14px;
    }

}


@media (max-width: 768px) {

    .services-preview {
        padding: 60px 20px;
    }

    .preview-card {
        width: 100%;
        max-width: 320px;
    }

}

@media (max-width: 768px) {
    .contact-heading h3 {
        font-size: 18px;
    }

    .contact-heading p {
        font-size: 12px;
    }
}

.result-tag {
    display: inline-block;
    font-size: 11px;
    color: #0A0A0A;
    background: linear-gradient(90deg, #C0C0C0, #E0E0E0);
    padding: 4px 12px;
    border-radius: 20px;
    margin: 10px 15px;
    font-weight: 500;
}

/* PORTFOLIO PROOF SECTION */

.portfolio-proof {
    text-align: center;
    padding: 60px 20px;
    margin-top: 20px;
}

.portfolio-proof p {
    font-size: 15px;
    color: #A0A0A0;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    letter-spacing: 0.3px;
    position: relative;
}

/* subtle glow line */
.portfolio-proof p::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #C0C0C0;
    margin: 0 auto 15px;
    opacity: 0.5;
}

.case-problem,
.case-solution,
.case-result {
    font-size: 13px;
    padding: 0 15px;
    margin-bottom: 5px;
}

/* COLORS FOR DIFFERENT PARTS */

.case-problem {
    color: #A0A0A0;
}

.case-solution {
    color: #C0C0C0;
}

.case-result {
    color: #FFFFFF;
    font-weight: 500;
}

@media (max-width: 768px) {
    .package {
        margin-bottom: 20px;
    }
}