/* ============================================ */
/* main.css — CRIMSON & CHARCOAL                */
/* Bold, Professional, Attention-Grabbing       */
/* ============================================ */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0b0e;
    color: #ece4ec;
    line-height: 1.7;
}

h1, h2, h3, h4, .logo, .nav-links a, .btn {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ----- CRIMSON & CHARCOAL PALETTE ----- */
:root {
    --crimson: #dc143c;
    --crimson-dark: #a0102e;
    --crimson-light: #ff4d6d;
    --crimson-glow: rgba(220, 20, 60, 0.3);
    --charcoal: #2d1b2b;
    --charcoal-light: #3d2a3a;
    --gold-accent: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --bg-dark: #0f0b0e;
    --bg-card: #1a1218;
    --bg-card-hover: #261d24;
    --text-light: #ece4ec;
    --text-muted: #9a8a9a;
    --border-color: #3a2a34;
}

.accent {
    color: var(--crimson);
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--crimson);
    border-radius: 6px;
}

/* ----- BUTTONS ----- */
.btn-primary {
    background: var(--crimson);
    color: #fff;
    padding: 14px 36px;
    font-weight: 600;
    border: 2px solid var(--crimson);
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}
.btn-primary:hover {
    background: transparent;
    color: var(--crimson);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--crimson-glow);
}

.btn-outline {
    background: transparent;
    color: var(--gold-accent);
    padding: 14px 36px;
    font-weight: 600;
    border: 2px solid var(--gold-accent);
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}
.btn-outline:hover {
    background: var(--gold-accent);
    color: #0f0b0e;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

/* ----- NAVIGATION ----- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(15, 11, 14, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--crimson);
}
.logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}
.logo span {
    color: var(--crimson);
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-light);
    font-weight: 400;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--crimson);
    transition: width 0.3s;
}
.nav-links a:hover {
    color: var(--crimson);
}
.nav-links a:hover::after {
    width: 100%;
}
.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-light);
}

/* ----- HERO ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(220, 20, 60, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.hero-tag {
    display: inline-block;
    background: rgba(220, 20, 60, 0.12);
    color: var(--crimson-light);
    padding: 6px 22px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(220, 20, 60, 0.2);
}
.hero h1 {
    font-size: 78px;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
}
.hero h1 .accent {
    color: var(--crimson);
}
.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- STATS ----- */
.stats {
    padding: 50px 5%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.stat-number {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
}
.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ----- SECTION TITLE ----- */
.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--crimson);
    margin: 16px auto 0;
}

/* ----- PREVIEW CARDS ----- */
.services-preview {
    padding: 80px 5%;
    background: var(--bg-dark);
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.preview-card {
    background: var(--bg-card);
    padding: 44px 32px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--crimson);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.preview-card:hover::before {
    transform: scaleX(1);
}
.preview-card:hover {
    border-color: var(--crimson);
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.preview-card i {
    font-size: 44px;
    color: var(--crimson);
    margin-bottom: 18px;
}
.preview-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fff;
}
.preview-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 15px;
}
.preview-link {
    color: var(--gold-accent);
    font-weight: 600;
    transition: all 0.3s;
}
.preview-link:hover {
    color: #fff;
    letter-spacing: 1px;
}

/* ----- TESTIMONIAL ----- */
.testimonial {
    padding: 80px 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark);
}
.testimonial blockquote {
    font-size: 30px;
    font-family: 'Playfair Display', serif;
    color: #f0e8f0;
    line-height: 1.4;
    margin-bottom: 20px;
}
.testimonial blockquote::before {
    content: '"';
    color: var(--crimson);
    font-size: 50px;
    margin-right: 8px;
}
.testimonial cite {
    color: var(--gold-accent);
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
}

/* ----- CTA ----- */
.cta {
    padding: 80px 5%;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.cta h2 {
    font-size: 38px;
    margin-bottom: 14px;
    color: #fff;
}
.cta p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 18px;
}

/* ----- FOOTER ----- */
footer {
    background: var(--bg-dark);
    text-align: center;
    padding: 40px 5% 32px;
    border-top: 2px solid var(--crimson);
}
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-menu a {
    color: var(--text-muted);
    transition: all 0.3s;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-menu a:hover {
    color: var(--crimson);
}
footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ----- PAGE HEADER ----- */
.page-header {
    padding: 140px 5% 50px;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
    font-size: 52px;
    color: #fff;
}
.page-header p {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 10px;
}

/* ----- ABOUT ----- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    align-items: center;
}
.about-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--crimson);
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 17px;
}
.signature {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold-accent);
    margin-top: 24px;
}
.about-image img {
    border: 2px solid var(--crimson);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ----- SERVICES FULL ----- */
.services-full {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 5%;
}
.service-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.service-item:last-child {
    border-bottom: none;
}
.service-icon {
    font-size: 44px;
    color: var(--crimson);
}
.service-detail h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #fff;
}
.service-detail p {
    color: var(--text-muted);
    margin-bottom: 14px;
}
.service-detail ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 20px;
}
.service-detail ul li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px 0;
}
.service-detail ul li i {
    color: var(--crimson);
    margin-right: 10px;
}

/* ----- PORTFOLIO ----- */
.portfolio-full {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.portfolio-tabs {
    text-align: center;
    margin-bottom: 40px;
}
.tab-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 26px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tab-btn.active,
.tab-btn:hover {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
}
.portfolio-category {
    display: none;
}
.portfolio-category.active {
    display: block;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.portfolio-item {
    background: var(--bg-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
}
.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: var(--crimson);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.portfolio-item img,
.portfolio-item iframe,
.portfolio-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: none;
}
.portfolio-item h4 {
    padding: 16px 18px 4px;
    font-size: 18px;
    color: #fff;
}
.portfolio-item p {
    padding: 0 18px 18px;
    color: var(--gold-accent);
    font-size: 14px;
}

/* ----- PRICING ----- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5%;
}
.pricing-card {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.35s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--crimson);
}
.pricing-card.featured {
    border: 2px solid var(--gold-accent);
    background: var(--bg-card-hover);
    transform: scale(1.02);
}
.pricing-card h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price {
    font-size: 48px;
    color: var(--crimson);
    margin: 12px 0 4px;
    font-family: 'Playfair Display', serif;
}
.price-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}
.pricing-card ul {
    list-style: none;
    margin: 24px 0;
}
.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}
.pricing-card ul li i {
    color: var(--gold-accent);
    margin-right: 10px;
}

/* ----- CONTACT ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 5%;
}
.contact-info {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border-color);
}
.contact-info h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
}
.contact-detail i {
    font-size: 22px;
    color: var(--crimson);
    width: 30px;
    text-align: center;
}
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    display: inline-block;
    margin-top: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.whatsapp-btn:hover {
    transform: scale(1.04);
}
.social-links {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}
.social-links a {
    font-size: 22px;
    color: var(--text-muted);
    transition: all 0.3s;
}
.social-links a:hover {
    color: var(--crimson);
    transform: translateY(-3px);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--crimson);
}
.contact-form .btn-primary {
    width: 100%;
    text-align: center;
}

/* ----- WHATSAPP FLOAT ----- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float i {
    font-size: 32px;
    color: #fff;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 24px;
        text-align: center;
        border-bottom: 2px solid var(--crimson);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .hero h1 {
        font-size: 42px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-detail ul {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .page-header h1 {
        font-size: 34px;
    }
    .section-title {
        font-size: 32px;
    }
    .testimonial blockquote {
        font-size: 22px;
    }
}