/* Font Imports */
@font-face {
    font-family: 'Airstrike';
    src: url('Logo%26Font/airstrike.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Airstrike Bold';
    src: url('Logo%26Font/airstrikebold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Vipnagorgialla';
    src: url('Logo%26Font/Vipnagorgialla Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vipnagorgialla';
    src: url('Logo%26Font/Vipnagorgialla Bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Vipnagorgialla', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: 'Airstrike', sans-serif;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b00;
}

.phone-btn {
    background: #ff6b00;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: #e55d00;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.hero-content h1 {
    font-family: 'Airstrike Bold', sans-serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #ff6b00;
    color: #fff;
}

.btn-primary:hover {
    background: #e55d00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

.hero-hours {
    margin-top: 2rem;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.5);
    padding: 1rem 2rem;
    border-radius: 5px;
    display: inline-block;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Airstrike Bold', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: 2px;
}

/* Services Section */
.services {
    background: #f5f5f5;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Airstrike', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b00;
}

/* Pricing Section */
.pricing {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    font-family: 'Airstrike', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.pricing-card.featured h3 {
    color: #fff;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
}

.pricing-card.featured .price-item {
    border-bottom-color: rgba(255,255,255,0.3);
}

.price {
    font-weight: bold;
    color: #ff6b00;
    font-size: 1.2rem;
}

.pricing-card.featured .price {
    color: #fff;
}

.price-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    color: #666;
}

/* About Section */
.about {
    background: #1a1a1a;
    color: #fff;
}

.about .section-title {
    color: #fff;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.feature h4 {
    font-family: 'Airstrike', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ff6b00;
}

/* Contact Section */
.contact {
    background: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-family: 'Airstrike', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b00;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.hours-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-top: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.directions-link {
    margin-top: 0.5rem;
}

.directions-link a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.directions-link a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.google-reviews {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.google-reviews h3 {
    font-family: 'Airstrike', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.rating-stars {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff6b00;
}

.review-link {
    margin-top: 0.5rem;
}

.review-link a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
}

.review-link a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .logo img {
        height: 50px;
    }
}
