:root {
    --primary: #FFB800; /* Attention grabbing yellow */
    --primary-hover: #E5A600;
    --dark: #121212;
    --dark-surface: #1E1E1E;
    --light: #F8F9FA;
    --text: #333333;
    --text-light: #DDDDDD;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BA56;
    --danger: #FF3B30;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.2rem;
    font-weight: 800;
}

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

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

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 184, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 59, 48, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Header */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('/Users/samitefekli/.gemini/antigravity/artifacts/hero_bg_tire.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero h2 {
    font-size: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-buttons {
    margin-bottom: 50px;
}

.features-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature i {
    color: var(--primary);
    font-size: 1.3rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 184, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--dark);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #666;
}

/* Coverage Area */
.coverage {
    padding: 100px 0;
    background-color: var(--dark);
    color: white;
    text-align: center;
    background-image: radial-gradient(circle at center, #1E1E1E 0%, #121212 100%);
}

.coverage-content {
    max-width: 800px;
    margin: 0 auto;
}

.coverage h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.coverage p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background-color: #0A0A0A;
    color: #888;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    position: relative;
}

.sticky-btn span {
    position: absolute;
    right: 75px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.sticky-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

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

.whatsapp-btn:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
}

.call-btn {
    background-color: var(--danger);
    animation: pulse-red 2s infinite;
}

.call-btn:hover {
    background-color: #E02C23;
    transform: scale(1.1);
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .coverage h2 {
        font-size: 2rem;
    }
    
    .header-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .sticky-buttons {
        bottom: 20px;
        right: 20px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        right: auto;
        left: 0;
        padding: 0 20px;
        gap: 20px;
    }
    
    .sticky-btn {
        width: 100%;
        height: 55px;
        border-radius: 12px;
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .sticky-btn span {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        padding: 0;
        font-size: 1rem;
    }
    
    .call-btn {
        animation: none;
        background-color: var(--danger);
        flex: 1.5;
    }
    
    .whatsapp-btn {
        flex: 1;
    }
}
