/* ============================================
   MR WAKALA TRANSPORTATION - SIMPLE CSS
   ============================================ */

:root {
    --custom-primary: #173A70;
    --custom-secondary: #FF6B00;
    --custom-accent: #FF8C00;
    --custom-gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.15), rgba(26, 54, 93, 0.1)),
                url('../images/hero.png') center/cover no-repeat;
    min-height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    color: var(--custom-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--custom-secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.feature-icon i {
    color: #fff;
    font-size: 1.8rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

/* ============================================
   BRANCH CARDS
   ============================================ */

.branch-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

/* ============================================
   GALLERY ITEMS
   ============================================ */

.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--custom-secondary);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER LINKS
   ============================================ */

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--custom-secondary);
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .feature-icon,
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .branch-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.feature-icon i {
    color: #fff;
    font-size: 1.8rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

/* ============================================
   BRANCH CARDS
   ============================================ */

.branch-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.branch-icon {
    width: 50px;
    height: 50px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

/* ============================================
   GALLERY ITEMS
   ============================================ */

.gallery-item {
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--custom-secondary);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER LINKS
   ============================================ */

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--custom-secondary);
    padding-left: 5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .feature-icon,
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .branch-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.navbar {
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--custom-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   GLASSMORPHISM
   ============================================ */

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
}

.shadow-soft {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rounded-custom {
    border-radius: 0.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 54, 93, 0.15), rgba(26, 54, 93, 0.1)),
                url('../images/hero.png') center/cover no-repeat;
    min-height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-overlay {
    background: rgba(26, 54, 93, 0.6);
}

/* About Hero Section */
.about-hero {
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

/* Services Hero Section */
.services-hero {
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

/* Section Title Styling */
.section-title {
    color: var(--custom-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--custom-secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.feature-icon i {
    color: #fff;
    font-size: 1.8rem;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.15);
    border-color: var(--custom-accent) !important;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--custom-accent), var(--custom-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.service-icon i {
    color: #fff;
    font-size: 1.5rem;
}

/* Branch Cards */
.branch-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-primary);
}

.branch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.branch-icon i {
    color: #fff;
    font-size: 1.5rem;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(23, 58, 112, 0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

/* Social Links */
.social-links a {
    width: 40px;
    height: 40px;
    background: var(--custom-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--custom-secondary);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--custom-secondary);
    padding-left: 5px;
}

/* Navbar Active State */
.nav-link.active {
    background-color: rgba(255,255,255,0.1);
    border-radius: 0.25rem;
}

/* Navbar Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: slideDown 0.8s ease-out;
}

/* Hero Title Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title-animate {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle-animate {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Navbar Brand Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.navbar-brand img {
    animation: pulse 2s ease-in-out infinite;
}

/* Nav Link Hover Animation */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--custom-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Breadcrumb Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb-item {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.breadcrumb-item:nth-child(2) {
    animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
}

/* Services Page Styles */
.service-detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-accent);
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--custom-accent), var(--custom-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.service-detail-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.why-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-primary);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.why-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.step-card {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--custom-accent), var(--custom-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* FAQ Section Styles */
.accordion-button {
    background-color: var(--custom-primary);
    color: #fff;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--custom-secondary);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(44, 82, 130, 0.25);
}

.accordion-body {
    background-color: #f8f9fa;
    color: var(--text-color);
}

.accordion-item {
    border: 1px solid var(--custom-secondary);
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.accordion-item:last-of-type {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

/* Gallery Page Styles */
.gallery-hero {
    position: relative;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--custom-primary);
    background: transparent;
    color: var(--custom-primary);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--custom-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.category-label {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--custom-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.zoom-icon:hover {
    background: var(--custom-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--custom-accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-buttons {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        padding: 0 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* Contact Cards */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(26, 54, 93, 0.2);
    border-color: var(--custom-primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--custom-primary), var(--custom-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.contact-icon i {
    color: #fff;
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form-card {
    border: 2px solid var(--custom-primary);
    border-radius: var(--border-radius);
}

.contact-form-card .section-title {
    color: var(--custom-primary);
}

.form-control:focus {
    border-color: var(--custom-primary);
    box-shadow: 0 0 0 0.25rem rgba(26, 54, 93, 0.25);
}

/* Quick Contact Cards */
.quick-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Business Hours */
.hours-card {
    border: 2px solid var(--custom-primary);
    border-radius: var(--border-radius);
}

.hours-item {
    transition: background-color 0.3s ease;
}

.hours-item:hover {
    background-color: rgba(26, 54, 93, 0.05);
}

/* Social Media Icons */
.social-icon {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Map Placeholder */
.map-placeholder {
    border: 2px dashed var(--custom-secondary);
    transition: border-color 0.3s ease;
}

.map-placeholder:hover {
    border-color: var(--custom-primary);
}