/* Design System & Variables */
:root {
    --primary-color: #e31b23; /* Stark Red */
    --primary-dark: #b3151b;
    --secondary-color: #0a0a0a; /* Deep Black */
    --accent-silver: #c0c0c0; /* Metallic Silver */
    --bg-dark: #0f0f0f;
    --bg-light: #f8f9fa;
    --text-main: #f0f0f0;
    --text-light: #a0a0a0;
    --text-white: #ffffff;
    --accent-color: #25d366; /* WhatsApp Green */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --carbon-pattern: radial-gradient(circle at 2px 2px, #1a1a1a 1px, transparent 0);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-dark); /* Dark mode by default */
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
}

span.highlight {
    color: var(--primary-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-white);
}

.logo-shield {
    color: var(--primary-color);
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(227, 27, 35, 0.4));
}

.stark {
    color: var(--text-white);
    text-transform: uppercase;
    font-style: italic;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-logo {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent-silver);
    display: block;
    margin-top: -5px;
}

.text-white { color: var(--text-white); }
.text-gray { color: #888; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    gap: 10px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(254, 195, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 22px 44px;
    font-size: 1.3rem;
    background-color: var(--accent-color);
    color: white;
}

.btn-xl:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    /* Logo styling moved to typography section */
}

header nav ul {
    display: flex;
    gap: 40px;
}

header nav ul li a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: #0a0a0a url('hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-white);
    overflow: hidden;
    padding-top: 80px; /* Space for fixed header */
    padding-bottom: 60px; /* Extra space for stats at bottom */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--carbon-pattern);
    background-size: 4px 4px;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(227, 27, 35, 0.1) 0%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 50px; /* Lower position as requested */
    margin-bottom: 35px;
    box-shadow: 0 0 20px rgba(227, 27, 35, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 35px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    display: inline-flex;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
}

.section-header h2 span {
    color: var(--primary-color);
}

.bg-dark {
    background-color: var(--bg-dark);
    position: relative;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--carbon-pattern);
    background-size: 4px 4px;
    opacity: 0.1;
}

.bg-light {
    background-color: #f0f2f5;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
    padding: 10px 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonials-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.testimonial-card.highlighted {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #e1306c; /* Insta Color */
}

.testimonial-header span {
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-footer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-white);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cccccc;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-white);
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-list {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* CTA Banner */
.cta-banner {
    background: var(--secondary-color);
    padding: 80px 0;
    color: var(--text-white);
}

.cta-banner h2 span {
    color: var(--primary-color);
}

.cta-banner p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #aaa;
}

/* Footer */
footer {
    background: #050505;
    padding: 40px 0;
    color: #888;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-wrapper, .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
    
    header nav ul { 
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 40px 20px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    header nav ul.active {
        display: flex;
    }

    header nav ul li {
        margin-bottom: 25px;
    }

    .mobile-menu-btn { display: block; }
    .header-cta { display: none; }
}

@media (max-width: 768px) {
    .hero { text-align: center; justify-content: center; padding-top: 100px; }
    .hero-actions { justify-content: center; flex-direction: column; }
    .hero-stats { justify-content: center; }
    .section { padding: 80px 0; }
    .hero h1 { font-size: 2.5rem; }
    .about-content h2 { font-size: 2.2rem; }
}

.mt-50 { margin-top: 50px; }
