@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #D0D0D0;
    background: #0A0A0A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 20px;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 900;
}

.bg-dark {
    background: #000;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #6A0DAD;
    color: #fff;
    border: 2px solid #6A0DAD;
}

.btn-primary:hover {
    background: #8A2BE2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138,43,226,0.4);
}

.btn-outline {
    background: transparent;
    color: #9B30FF;
    border: 2px solid #6A0DAD;
}

.btn-outline:hover {
    background: #6A0DAD;
    color: #fff;
}

.btn-accent {
    background: #6A0DAD;
    color: #fff;
    border: 2px solid #9B30FF;
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    background: #000;
    border-bottom: 3px solid #6A0DAD;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #6A0DAD;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #bbb;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: #9B30FF;
}

/* Hero - WITH YOUR IMAGE */
.hero {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.55)),
        url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 100px;
    text-align: center;
    border-bottom: 3px solid #6A0DAD;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 900;
}

.highlight {
    color: #9B30FF;
}

.hero .subtitle {
    font-size: 19px;
    color: #aaa;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 24px;
    color: #9B30FF;
    font-weight: 900;
}

.stat span {
    font-size: 14px;
    color: #777;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #111;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #1F1F1F;
    text-align: center;
}

.service-card.featured {
    border: 3px solid #6A0DAD;
    background: #0D0D0D;
    box-shadow: 0 0 40px rgba(106,13,173,0.3);
}

.service-card i {
    color: #6A0DAD;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    color: #999;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    color: #bbb;
}

.service-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #1F1F1F;
}

.service-card ul li:before {
    content: "✓ ";
    color: #6A0DAD;
    font-weight: 700;
    margin-right: 8px;
}

/* Recent Work */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.work-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #1F1F1F;
    position: relative;
}

.work-card.spot {
    border: 3px solid #6A0DAD;
    box-shadow: 0 0 30px rgba(106,13,173,0.4);
}

.work-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #6A0DAD;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.work-badge.vip {
    background: linear-gradient(135deg, #6A0DAD, #4B0082);
}

.work-info {
    padding: 30px;
}

.work-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.work-info p {
    color: #999;
    margin-bottom: 20px;
}

.status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.status.coming-soon {
    background: #6A0DAD;
    color: #fff;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #111;
    padding: 45px 35px;
    border-radius: 12px;
    border: 2px solid #1F1F1F;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 3px solid #6A0DAD;
    background: #0D0D0D;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(106,13,173,0.5);
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6A0DAD;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.price-card.featured h3 {
    color: #9B30FF;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #6A0DAD;
    margin-bottom: 30px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    color: #bbb;
}

.price-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #1F1F1F;
}

.note {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Contact */
.contact-sub {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 50px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.detail {
    display: flex;
    align-items: start;
    gap: 20px;
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #1F1F1F;
}

.detail i {
    color: #6A0DAD;
    font-size: 24px;
    margin-top: 5px;
}

.detail strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.detail a {
    color: #9B30FF;
    text-decoration: none;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    color: #555;
    border-top: 2px solid #6A0DAD;
}

.site-url {
    color: #6A0DAD;
    margin-top: 10px;
    font-weight: 600;
}

/* WhatsApp Float - ONLY ONE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1fa851;
}

@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 rgba(37,211,102,0); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.modal-content {
    background: #111;
    margin: 5% auto;
    padding: 40px;
    border: 3px solid #6A0DAD;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

.modal-content h2 {
    color: #fff;
    margin-bottom: 25px;
}

.close {
    color: #666;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #9B30FF;
}

#quoteForm input, #quoteForm textarea, #quoteForm select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: #000;
    border: 2px solid #222;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
}

#quoteForm input:focus, #quoteForm textarea:focus, #quoteForm select:focus {
    border-color: #6A0DAD;
    outline: none;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .work-grid, .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* STOP HORIZONTAL SCROLL + FIX WHATSAPP BUTTON */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* Make sure nothing pushes the page wide */
* {
    min-width: 0;
}

.container, .navbar, .hero-content {
    max-width: 100%;
}

/* FIX CONTACT INFO OVERLAP ON MOBILE */
.contact p {
    word-break: break-word;
    line-height: 1.8;
    margin-bottom: 12px;
    padding: 0 10px;
}

.contact p i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
    color: #6A0DAD;
}

/* Stack nicely on small phones */
@media (max-width: 400px) {
    .contact p {
        font-size: 0.9rem;
    }
}

/* NUCLEAR FIX FOR CONTACT OVERLAP */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #ccc;
    word-break: break-all;
}

.contact-item i {
    color: #6A0DAD;
    font-size: 1.2rem;
    min-width: 24px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: #6A0DAD;
}

@media (min-width: 768px) {
    .contact-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}