/* Professional CSS for Advantage Auto Parts - Super Aesthetic Design */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    font-weight: 400;
    overflow-x: hidden;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Header Styles - Premium Design */
.header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    padding: 25px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 0 3px rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.2);
}

.company-info h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* Navigation - Modern Design */
.navbar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    padding: 18px 30px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a.active {
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,237,78,0.2) 100%);
    color: #ffd700;
    font-weight: 700;
}

/* Page Header - Stunning Design */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Hero Section - Premium */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,1 26,7 26,19 14,25 2,19 2,7" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    pointer-events: none;
}

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

.hero-content h2 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Statistics - Modern Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Button Styles - Premium */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a202c;
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.8);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Section Styles - Professional */
section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 800;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Overview Section - Enhanced */
.overview {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    position: relative;
}

.overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(102,126,234,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.overview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(102,126,234,0.3);
}

.overview-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.overview-card h3 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.overview-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

/* Business Hours - COMPLETELY REDESIGNED */
.business-hours {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.business-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    pointer-events: none;
}

.hours-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hours-main h3 {
    color: #1a202c;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

/* PROFESSIONAL HOURS GRID - NO MORE BRACKETS */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(102,126,234,0.1);
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.day-hours:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #764ba2;
}

.day {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hours {
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Quick Card - Enhanced */
.contact-quick {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(102,126,234,0.1);
    position: relative;
    overflow: hidden;
}

.contact-quick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-quick h3 {
    color: #1a202c;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
}

.contact-quick p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-quick strong {
    color: #1a202c;
    font-weight: 700;
}

/* About Page Specific Styles */
.company-overview {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    line-height: 1.7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
    color: #4a5568;
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid #667eea;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 2.8rem;
    color: #667eea;
    margin-bottom: 12px;
    font-weight: 800;
}

.stat-card p {
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
}

/* Mission & Vision - Enhanced */
.mission-vision {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.mv-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(102,126,234,0.1);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.mv-card h3 {
    color: #1a202c;
    margin-bottom: 25px;
    font-size: 1.6rem;
    font-weight: 700;
}

.mv-card p {
    color: #4a5568;
    line-height: 1.7;
    text-align: left;
    font-size: 1rem;
}

/* Business Registration - Professional */
.business-registration {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.registration-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 35px 30px;
    border-radius: 20px;
    border-left: 6px solid #667eea;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-8px);
}

.registration-card h3 {
    color: #1a202c;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.reg-details p {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.reg-details strong {
    color: #1a202c;
    font-weight: 700;
}

/* Services Page Styles */
.main-services {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 45px 35px;
    border-radius: 20px;
    border-top: 6px solid #667eea;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-top-color: #ffd700;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
    box-shadow: 0 20px 40px rgba(255,215,0,0.15);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-card h3 {
    color: #1a202c;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(102,126,234,0.1);
    color: #4a5568;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-hours {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 600;
}

/* CTA Section - Premium */
.cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="6" cy="6" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="19" cy="19" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Footer - Professional */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 8px 0;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: #cbd5e0;
    position: relative;
    z-index: 2;
}

/* Contact Page Specific Styles */
.contact-main {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.business-hours-section h2 {
    color: #1a202c;
    margin-bottom: 35px;
    font-size: 2.2rem;
    text-align: left;
    font-weight: 700;
}

.contact-card,
.hours-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 35px 30px;
    border-radius: 20px;
    margin-bottom: 35px;
    border-left: 6px solid #667eea;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover,
.hours-card:hover {
    transform: translateY(-8px);
}

.contact-card h3,
.hours-card h3 {
    color: #1a202c;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-details p {
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.contact-details strong {
    color: #1a202c;
    font-weight: 700;
}

/* Enhanced Hours Grid for Contact Page */
.hours-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.day-hours-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 10px;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.day-hours-detailed:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.day-hours-detailed .day {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
}

.day-hours-detailed .hours {
    color: #4a5568;
    font-weight: 600;
    font-size: 1rem;
}

.status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status.open {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(72,187,120,0.3);
}

.hours-note {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.hours-note p {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-info h1 {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    
    .nav-menu a {
        padding: 15px 25px;
        width: 100%;
        text-align: center;
    }
    
    .hero-content h2,
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p,
    .page-header p {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-content,
    .hours-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    
    .services-grid,
    .mv-grid,
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .company-info h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero-content h2,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-content p,
    .page-header p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .overview-card,
    .service-card,
    .mv-card {
        padding: 30px 25px;
    }
    
    .hours-grid {
        padding: 20px;
    }
    
    .day-hours {
        padding: 15px 20px;
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card,
.overview-card,
.contact-card,
.mv-card,
.registration-card {
    animation: fadeInUp 0.8s ease-out;
}

.day-hours {
    animation: slideInLeft 0.6s ease-out;
}

.contact-quick {
    animation: slideInRight 0.6s ease-out;
}

/* Hover Effects - Enhanced */
.service-card:hover .service-icon,
.overview-card:hover .overview-icon,
.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s ease;
}

/* Focus States for Accessibility */
.nav-menu a:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 3px solid #ffd700;
    outline-offset: 3px;
    border-radius: 8px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        background: white;
    }
    
    .contact-card,
    .service-card,
    .overview-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .hours-grid {
        background: white;
        border: 1px solid #ccc;
    }
}

/* Back to Top Button Enhancement */
.back-to-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3) !important;
    transition: all 0.3s ease !important;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    box-shadow: 0 12px 35px rgba(102,126,234,0.4) !important;
    transform: scale(1.1) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Selection Color */
::selection {
    background: rgba(102,126,234,0.3);
    color: #1a202c;
}

::-moz-selection {
    background: rgba(102,126,234,0.3);
    color: #1a202c;
}



/* Contact Page - Big Centered Modern Design */

/* Contact Main */
.contact-main {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    min-height: 90vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-header p {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Centered Contact Form Wrapper */
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Big Centered Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 40px 40px 0 0;
}

.contact-form-container h2 {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-align: center;
}

/* Big Form Styling */
.big-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.big-contact-form .form-field {
    margin-bottom: 40px;
    position: relative;
}

.big-contact-form label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.big-contact-form label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.big-contact-form input,
.big-contact-form select,
.big-contact-form textarea {
    width: 100%;
    padding: 25px 30px;
    border: 3px solid #e5e7eb;
    border-radius: 25px;
    font-size: 1.2rem;
    font-family: inherit;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-sizing: border-box;
    color: #1f2937;
}

.big-contact-form input:focus,
.big-contact-form select:focus,
.big-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 
        0 0 0 6px rgba(59, 130, 246, 0.1),
        0 8px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
    background: #ffffff;
}

.big-contact-form input::placeholder,
.big-contact-form textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.big-contact-form textarea {
    resize: vertical;
    min-height: 180px;
    line-height: 1.7;
    font-family: inherit;
    border-radius: 25px;
}

.big-contact-form select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233b82f6" stroke-width="3"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 20px;
    appearance: none;
    padding-right: 60px;
}

/* Round Submit Button */
.submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.round-submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 25px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    min-width: 250px;
}

.round-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.round-submit-btn:hover::before {
    left: 100%;
}

.round-submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(59, 130, 246, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.round-submit-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.round-submit-btn svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.round-submit-btn:hover svg {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-container {
        padding: 60px 50px;
        max-width: 600px;
    }
    
    .contact-header h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 50px 40px;
        border-radius: 30px;
        max-width: 500px;
    }
    
    .big-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-header h1 {
        font-size: 3rem;
    }
    
    .contact-header p {
        font-size: 1.3rem;
    }
    
    .contact-form-container h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
        border-radius: 25px;
    }
    
    .big-contact-form input,
    .big-contact-form select,
    .big-contact-form textarea {
        padding: 20px 25px;
        font-size: 1.1rem;
        border-radius: 20px;
    }
    
    .round-submit-btn {
        padding: 20px 50px;
        font-size: 1.2rem;
        border-radius: 40px;
        min-width: 200px;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
}


/* About Page Boxes */
.about-content-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.about-box {
    background: #f1f5f9;
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #ffffff;
}

.about-box h2,
.about-box h3 {
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-box h2 {
    font-size: 1.8rem;
}

.about-box h3 {
    font-size: 1.4rem;
}

.about-box p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-box .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2d3748;
}

.expertise-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 8px;
    padding-left: 5px;
}

/* Responsive Design for About Boxes */
@media (max-width: 768px) {
    .expertise-boxes {
        grid-template-columns: 1fr;
    }
    
    .about-box {
        padding: 25px 20px;
    }
    
    .about-box h2 {
        font-size: 1.6rem;
    }
    
    .about-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-box {
        padding: 20px 15px;
    }
    
    .about-box h2 {
        font-size: 1.5rem;
    }
    
    .about-box h3 {
        font-size: 1.2rem;
    }
}



/* Cache Buster - Updated 2025-01-06 12:15 */
/* This ensures the CSS loads fresh on the live website */

