/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    /* Color Palette */
    --bg-obsidian: #08080a;
    --bg-dark: #0f1015;
    --bg-card: rgba(22, 24, 33, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary-gold: #ffb800;
    --primary-gold-hover: #e5a500;
    --primary-gradient: linear-gradient(135deg, #ffc800 0%, #ff8a00 100%);
    --gold-glow: rgba(255, 184, 0, 0.25);
    
    --whatsapp-green: #10b981;
    --whatsapp-green-hover: #059669;
    --whatsapp-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --whatsapp-glow: rgba(16, 185, 129, 0.25);
    
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ==========================================
   HEADER TOP ALERT BAR
   ========================================== */
.top-bar {
    background: var(--primary-gradient);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.2);
    position: relative;
    z-index: 10;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pulse-icon {
    display: inline-flex;
    color: #000000;
    font-size: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    background: radial-gradient(circle at top right, rgba(255, 184, 0, 0.08), transparent 50%),
                radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.03), transparent 50%),
                var(--bg-obsidian);
    padding: 60px 0 80px 0;
    display: flex;
    align-items: center;
    min-height: auto;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* Brand / Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.5px;
    cursor: default;
}



.gold-text {
    color: var(--primary-gold);
}

.brand-name {
    text-transform: uppercase;
}

/* Hero Content */
.hero-content {
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gold-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(255, 184, 0, 0.3));
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Box (Card) */
.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: rgba(255, 184, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.08),
                0 0 30px rgba(255, 184, 0, 0.05);
    transform: translateY(-4px);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

/* Links & Buttons */
.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--primary-gradient);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px var(--gold-glow);
    transition: var(--transition-smooth);
}

.phone-link:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

.phone-link i {
    font-size: 24px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--whatsapp-gradient);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 20px var(--whatsapp-glow);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
}

/* ==========================================
   SERVICES & DETAIL SECTION (TOW TRUCK)
   ========================================== */
.services-section {
    position: relative;
    background-color: #12131a; /* Distinct background color to differentiate sections */
    padding: 90px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Grayscale tow truck image with opacity */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    filter: grayscale(100%) contrast(1.05);
    z-index: 1;
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin: 0 auto 40px auto;
    max-width: 440px;
    width: 100%;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.service-text {
    font-size: 18px;
    font-weight: 500;
    color: #f3f4f6;
}

.cta-wrapper {
    width: 100%;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-gradient);
    color: #000000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px var(--gold-glow);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: #050507;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.main-footer p {
    margin-bottom: 12px;
}

.service-areas {
    font-size: 13px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Tablets & Small Desktops */
@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
    

}

/* Mobile Devices */
@media (max-width: 576px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .hero-section {
        padding: 40px 0 60px 0;
    }
    
    .brand-logo {
        font-size: 24px;
    }
    

    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .contact-card {
        padding: 24px 16px;
    }
    
    .contact-title {
        font-size: 14px;
        text-align: center;
    }
    
    .phone-link {
        font-size: 20px;
        padding: 12px 16px;
        gap: 8px;
    }
    
    .phone-link i {
        font-size: 20px;
    }
    
    .whatsapp-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    

    
    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .services-list {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .services-list li {
        gap: 12px;
    }
    
    .service-text {
        font-size: 15px;
    }
    
    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .cta-btn {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .main-footer {
        padding: 30px 0;
        font-size: 12px;
    }
    
    .service-areas {
        font-size: 11px;
    }
}
