/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a5276;
    --secondary: #f39c12;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --success: #27ae60;
    --danger: #e74c3c;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

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

/* MOBILE FIRST STYLES - Base styles for small phones */
/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

p .simple {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
    width: 100%;
    margin: 5px;
    margin-bottom: 0.5rem;
}

.btn:hover {
    background-color: #e67e22;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 0;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-emergency {
    background-color: var(--danger);
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
}

.btn-emergency:hover {
    background-color: #c0392b;
}

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

/* Navbar Styles - Mobile First */
.navbar {
    background-color: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: none;
    list-style: none;
    width: 100%;
    margin-top: 1rem;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
}

.nav-links li {
    margin: 0.3rem 0;
    width: 100%;
    text-align: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.8rem 0;
    position: relative;
    display: block;
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: var(--secondary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: var(--secondary);
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */

.hero {
    position: relative;
    background: url('images/hero-bg.webp') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
} 

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.05); /* dark overlay for text contrast */
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: whitesmoke;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 1.2rem;
}


/* Page Header */
.page-header {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 1.8rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 180px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.service-icon {
    font-size: 2.5rem;
    text-align: center;
    padding: 1rem 0 0;
}

.service-content {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-content p {
    flex-grow: 1;
    font-size: 0.9rem;
}

/* Service Detail Pages */
.service-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-img-large {
    height: 250px;
    background-color: #ddd;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.service-detail-text h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-text h3 {
    color: var(--dark);
    margin: 1.2rem 0 0.5rem;
    font-size: 1.2rem;
}

.service-detail-text ul {
    margin-left: 1.2rem;
    margin-bottom: 1.2rem;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-img {
    height: 250px;
    background-color: #ddd;
    border-radius: 8px;
    background-image: url('../images/hoxha2.webp');
    background-size: cover;
    background-position: center;
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
    border-left: 3px solid var(--secondary);
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 1.2rem;
}

.member-role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Certifications */
.certifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.cert-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.cert-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.fleet-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.fleet-img {
    height: 180px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.fleet-content {
    padding: 1.2rem;
}

.fleet-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Fleet Detail */
.fleet-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.fleet-img-large {
    height: 250px;
    background-color: #ddd;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    height: 180px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.gallery-caption {
    padding: 0.8rem;
    background-color: white;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Maintenance */
.maintenance-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

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

.maintenance-item h3 {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Emergency Section */
.emergency-section {
    background-color: var(--danger);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.emergency-section h2 {
    color: white;
    font-size: 1.5rem;
}

.emergency-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.emergency-banner {
    background-color: var(--danger);
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.emergency-banner h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.emergency-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.contact-icon {
    background-color: var(--primary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.contact-details h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Map */
.map-container {
    padding: 2rem 0;
}

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

.map-placeholder h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.map-frame {
    margin-top: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.9rem;
}

/* Pricing */
.pricing-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-column {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.pricing-column.featured {
    border: 2px solid var(--secondary);
    transform: none;
}

.pricing-column h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.price span {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.pricing-column ul {
    list-style: none;
    margin-bottom: 1.2rem;
}

.pricing-column li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.pricing-column li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.85rem;
}

/* MEDIA QUERIES */

/* Small Phones (320px and up) */
@media (min-width: 320px) {
    .btn {
        width: auto;
        margin: 2px;
        margin-right: 0.5rem;
    }
    
    .btn-secondary {
        margin-top: 0;
        margin-bottom: 5px;
    }
}

/* Large Phones (480px and up) */
@media (min-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .team-grid,
    .fleet-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications,
    .maintenance-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px and up) */
@media (min-width: 768px) {
    .container {
        width: 85%;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .nav-links {
        display: flex;
        width: auto;
        margin-top: 0;
        flex-direction: row;
    }
    
    .nav-links li {
        margin: 0 0.8rem;
        width: auto;
    }
    
    .nav-links a {
        padding: 0.5rem 0;
        display: inline;
        width: auto;
    }
    
    .nav-links a:hover {
        background-color: transparent;
    }
    
    .nav-links a.active::after {
        left: 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .services-grid,
    .team-grid,
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content,
    .contact-content,
    .service-detail-content,
    .fleet-detail-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-img,
    .service-img-large,
    .fleet-img-large {
        height: 350px;
    }
    
    .service-detail-content.reverse {
        direction: rtl;
    }
    
    .pricing-table {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-column.featured {
        transform: scale(1.05);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .container {
        width: 80%;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .about-img,
    .service-img-large,
    .fleet-img-large {
        height: 400px;
    }
    
    .nav-links li {
        margin-left: 1.5rem;
    }
    
    .btn {
        margin: 5px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-emergency {
        margin: 5px;
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px), (max-width: 768px) and (orientation: portrait) {
    .hide-on-mobile {
        display: none !important;
    }
}