/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E84E33;
    --accent-yellow: #F5B942;
    --accent-orange: #EF7F3E;
    --accent-teal: #4FA89E;
    --secondary-color: #1E1E1E;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #F7F7F7;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --primary-light-bg: #FFF3F0;
    --border-light: #E8E8E8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-bottom: 0;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for mobile tab bar */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d43d28;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }
}

/* ===== DESKTOP NAVIGATION ===== */
.desktop-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        margin: 0 auto;
    }
}

.logo-animated {
    clip-path: inset(0 100% 0 0);
    animation: logoReveal 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes logoReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0% 0 0);
    }
}

.logo-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .logo {
        font-size: 1.1rem;
    }

    .logo img {
        max-height: 46px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .logo-animated {
        max-width: 100%;
        max-height: 46px;
        height: auto;
        object-fit: contain;
    }
}

.logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    padding: 8px 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 78, 51, 0.3);
}

.nav-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(232, 78, 51, 0.3);
}

.nav-menu-compact {
    display: flex;
}

.nav-menu-full {
    display: none;
}

/* Show full menu on wide screens */
@media (min-width: 1200px) {
    .nav-menu-compact {
        display: none;
    }

    .nav-menu-full {
        display: flex;
    }
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 78, 51, 0.3);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-dropdown-toggle i {
    font-size: 0.9rem;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 1100;
    margin-top: 4px;
}

.nav-dropdown-menu.active {
    display: flex;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu a {
    padding: 12px 16px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    display: block;
    text-align: left;
}

.nav-dropdown-menu a:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background-color: var(--primary-light-bg);
    color: var(--primary-color);
}

.nav-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    padding: 12px 24px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(232, 78, 51, 0.25);
}

.phone-link:hover {
    background-color: #d43d28;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 78, 51, 0.35);
}

.phone-link i {
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .nav-menu,
    .nav-menu-compact,
    .nav-menu-full,
    .nav-contact {
        display: none;
    }
    
    .nav-dropdown-menu {
        display: none !important;
    }
}

/* ===== MOBILE TAB BAR ===== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 70px;
}

@media (max-width: 1024px) {
    .mobile-tab-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
    }
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 8px;
}

.tab-item i {
    font-size: 1.3rem;
}

.tab-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.tab-item.active,
.tab-item:hover {
    color: var(--primary-color);
}

/* ===== SERVICES POPUP (MOBILE) ===== */
.services-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1500;
    animation: fadeIn 0.3s ease;
}

.services-popup.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.services-popup-content {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.services-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

.services-popup h3 {
    margin-bottom: 20px;
    padding-right: 30px;
}

.services-popup-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.popup-service-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.popup-service-item i {
    font-size: 1.5rem;
    min-width: 30px;
}

/* ===== SECTION LOGOS ===== */
.section-logo-accent {
    max-width: 150px;
    height: auto;
    opacity: 0.15;
    position: absolute;
    right: 20px;
    top: 20px;
    pointer-events: none;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/workshop-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.85) 0%, rgba(229, 57, 53, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 60px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== WORKSHOP GALLERY ===== */
.workshop-gallery {
    padding: 40px 20px;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
}

.gallery-item.gallery-large {
    grid-column: auto;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item.gallery-large {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:nth-child(1) img {
    object-position: 30% 30%;
}

.gallery-item:nth-child(3) img {
    object-position: 70% center;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    color: var(--white);
    padding: 30px 10px 12px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
        padding: 25px 8px 10px;
        font-size: 0.75rem;
    }
}


/* ===== SECTIONS ===== */
section {
    padding: 60px 20px;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about {
    background-color: #FAFAFA;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    text-align: center;
    hyphens: auto;
    word-break: break-word;
    margin: 0 auto 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(232, 78, 51, 0.08), rgba(232, 78, 51, 0.04));
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    box-shadow: none;
    transition: color 0.3s ease;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    font-weight: 600;
    text-align: justify;
    text-align-last: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-card {
    display: block;
    color: inherit;
    text-decoration: none;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.about-card:nth-child(1) {background: linear-gradient(135deg, rgba(255,69,58,0.1), rgba(255,69,58,0.02));}
.about-card:nth-child(2) {background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(14,165,233,0.03));}
.about-card:nth-child(3) {background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(59,130,246,0.03));}
.about-card:nth-child(4) {background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.03));}
.about-card:nth-child(5) {background: linear-gradient(135deg, rgba(250,204,21,0.18), rgba(250,204,21,0.06));}
.about-card:nth-child(6) {background: linear-gradient(135deg, rgba(109,40,217,0.12), rgba(109,40,217,0.03));}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 69, 58, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    text-align: center;
}

.about-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.about-header {
    text-align: center;
    border: none;
    outline: none;
}

@media (max-width: 576px) {
    .about-lead { font-size: 1.05rem; }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .about-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        width: 100%;
        touch-action: pan-x;
        scrollbar-width: none; /* Firefox */
        scroll-behavior: auto;
        scroll-padding: 0;
        /* REMOVED: -webkit-overflow-scrolling: touch; */
        /* This causes momentum scrolling on iOS which interferes with JS control */
    }
    
    .about-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    .about-card {
        flex: 0 0 calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        text-align: center;
        hyphens: auto;
        word-break: break-word;
        min-width: calc(100vw - 40px);
    }
}

/* Carousel animations removed - using JavaScript for infinite scroll */

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6659);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reviews-grid .review-card:not(:first-child) {
        display: none;
    }
    
    .reviews-grid.expanded .review-card {
        display: block;
    }
}

.review-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
    }
}

.reviews-toggle-btn {
    display: none;
    margin: 20px auto 0;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    align-items: center;
}

.reviews-toggle-btn:hover {
    background-color: #c62828;
    transform: translateY(-2px);
}

.reviews-toggle-btn i {
    transition: transform 0.3s ease;
}

.reviews-toggle-btn.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .reviews-toggle-btn {
        display: inline-flex;
    }
}

.review-stars {
    color: #FFB300;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===== MAP SECTION ===== */
.map-section {
    background-color: var(--bg-light);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    max-width: 1000px;
    margin: 0 auto;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-item {
    text-align: center;
    padding: 20px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.contact-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-showcase-logo {
    flex: 0 0 400px;
}

.contact-showcase-logo img {
    width: 100%;
    height: auto;
}

.contact-showcase-content {
    flex: 1;
}

.contact-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-showcase-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-showcase-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-showcase-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-showcase-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-showcase-item a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-showcase-item a:hover {
    text-decoration: underline;
}

.contact-showcase-buttons {
    display: flex;
    gap: 20px;
}

.contact-showcase-buttons .btn {
    flex: 1;
    max-width: 250px;
}

@media (max-width: 992px) {
    .contact-info-section {
        padding: 0;
        background: transparent;
    }
    
    .contact-showcase {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-showcase-logo {
        display: none;
    }
    
    .contact-showcase-content {
        order: 2;
        padding: 40px 20px 60px;
        background: var(--white);
    }
    
    .contact-showcase-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .contact-showcase-buttons {
        flex-direction: column;
    }
    
    .contact-showcase-buttons .btn {
        max-width: 100%;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.footer-email-logo {
    height: 3rem;
    width: auto;
    display: block;
    margin-top: 12px;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    white-space: nowrap;
    max-width: 100%;
}

.footer-bottom-content p {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4px;
}

.footer-logo {
    height: 0.9em;
    width: auto;
    display: inline-block;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 15px;
    }
    
    .footer-bottom-content {
        white-space: normal;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .footer-logo {
        height: 0.85em;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #333 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.page-header .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.page-header .header-icon i {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    max-width: 800px;
    margin: 0 auto;
}

.content-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.content-main ul, .content-main ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-main li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
}

.cta-section h2,
.cta-section p {
    text-align: center;
}

@media (max-width: 768px) {
    section {
        padding: 40px 20px;
    }
}
