/* Variables & Reset */
:root {
    --primary: #f59e0b; /* High-Energy Amber/Orange */
    --primary-hover: #d97706;
    --secondary: #0f172a; /* Deep Navy/Black */
    --secondary-light: #1e293b;
    --text-dark: #020617;
    --text-body: #334155;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --accent-red: #ef4444; /* For urgent/hoarder tags */
    --border: #e2e8f0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --radius: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
}

.btn-massive {
    padding: 18px 40px;
    font-size: 1.2rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
}

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

.btn-dark:hover {
    background-color: black;
}

.btn-outline {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    backdrop-filter: blur(4px);
}

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

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pulse-btn {
    animation: pulse-ring 2s infinite;
}

/* Emergency Banner */
.emergency-banner {
    background-color: var(--accent-red);
    color: white;
    padding: 10px 0;
    font-size: 0.95rem;
}

.banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

.banner-contact a {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Header */
header {
    background-color: white;
    padding: 16px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 2.2rem;
    color: var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.main-nav a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.8) 50%, rgba(2, 6, 23, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 750px;
    color: white;
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.offer-tag .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
}

.offer-tag .offer-text {
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero h1 {
    color: white;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 em {
    color: var(--primary);
    font-style: italic;
}

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

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--secondary);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card.highlight {
    border-color: var(--primary);
}

.service-card.warning {
    border-color: var(--accent-red);
}

.service-card.warning i {
    color: var(--accent-red);
}

/* Perfect For Section */
.perfect-for {
    padding: 100px 0;
    background-color: white;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.split-text .lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.target-list {
    list-style: none;
}

.target-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.target-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    flex-shrink: 0;
    border: 2px solid var(--border);
}

.target-info h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.split-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 10px solid white;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background-color: var(--secondary);
    color: white;
}

.why-us .section-title h2 {
    color: white;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature p {
    color: #94a3b8;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--text-dark);
}

.cta-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.final-cta .btn {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.final-cta .btn:hover {
    background-color: black;
}

.sub-cta {
    margin-top: 24px;
    font-size: 1.1rem;
}

.sub-cta a {
    text-decoration: underline;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #020617;
    color: #cbd5e1;
    padding: 80px 0 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.brand-col .logo i {
    color: var(--primary);
}

.brand-col p {
    max-width: 350px;
}

.contact-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.contact-col ul {
    list-style: none;
}

.contact-col li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-col i {
    color: var(--primary);
}

.contact-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .split-image {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .banner-inner {
        justify-content: center;
        text-align: center;
    }
    
    .main-nav, .nav-btn {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .offer-tag {
        margin: 0 auto 24px;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
}
