/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Electrician Theme Colors */
    --primary-color: #0066CC;
    --primary-dark: #0052A3;
    --accent-color: #FFB800;
    --accent-dark: #E6A500;
    
    /* Neutrals */
    --dark-bg: #1a1a1a;
    --dark-text: #2d2d2d;
    --light-text: #ffffff;
    --gray-text: #666666;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Animation */
    --animation-speed: 0.3s;
    --animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s var(--animation-ease) forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s var(--animation-ease) 0.2s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.6s var(--animation-ease) forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 0.6s var(--animation-ease) 0.2s forwards;
    opacity: 0;
}

.animate-slide-down {
    animation: slideDown 0.6s var(--animation-ease) forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.5s var(--animation-ease) forwards;
    opacity: 0;
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   BASE STYLES
   ============================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: #ffffff;
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--light-text);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo:hover {
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    white-space: nowrap;
    font-size: 1.4rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-appointment {
    background: var(--accent-color) !important;
    color: var(--dark-bg) !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
    font-size: 0.9rem !important;
}

.btn-appointment:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-appointment.active {
    background: var(--accent-dark) !important;
    opacity: 0.9;
}

.btn-appointment::after {
    display: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-text);
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    background: #ffffff;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--dark-text);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.intro-section {
    padding: 4rem 0;
    background: #ffffff;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   VALUES GRID
   ============================================ */

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

.value-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--animation-speed) var(--animation-ease);
    will-change: transform;
}

.value-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-card .value-icon {
    transition: transform var(--animation-speed) var(--animation-ease);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-icon i {
    font-size: inherit;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
}

.value-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-text);
    border: 1px solid var(--border-color);
    transition: all var(--animation-speed) var(--animation-ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: transform var(--animation-speed) var(--animation-ease);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg);
}

.service-icon i {
    font-size: inherit;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1rem;
}

.office-hours {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.office-hours h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.office-hours p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   SOCIAL MEDIA
   ============================================ */

.social-media {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    margin-top: 1.5rem;
}

.social-media h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
}

.social-intro {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all var(--animation-speed) var(--animation-ease);
    box-shadow: var(--shadow-sm);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icon:nth-child(1):hover {
    background: #1877F2;
}

.social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:nth-child(3):hover {
    background: #25D366;
}

/* Footer Social Media */
.social-intro-footer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--animation-speed) var(--animation-ease);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-footer:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
}

.social-icons-footer .social-icon-footer:nth-child(1):hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icons-footer .social-icon-footer:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
}

.social-icons-footer .social-icon-footer:nth-child(3):hover {
    background: #25D366;
    border-color: #25D366;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-note a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-submit:disabled {
    background: var(--gray-text);
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   APPOINTMENT PAGE
   ============================================ */

.appointment-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.appointment-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    font-weight: 700;
}

.info-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--animation-speed) var(--animation-ease);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform var(--animation-speed) var(--animation-ease);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--animation-speed) ease;
}

.info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
}

.info-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.appointment-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.appointment-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.appointment-form .form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #ffffff;
    cursor: pointer;
}

.appointment-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   ENHANCED HOVER EFFECTS
   ============================================ */

.nav-menu a {
    position: relative;
    transition: color var(--animation-speed) ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--animation-speed) var(--animation-ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo {
    transition: transform var(--animation-speed) var(--animation-ease);
}

.logo:hover {
    transform: scale(1.05);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* ============================================
   APPOINTMENT PAGE
   ============================================ */

.appointment-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.appointment-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-text);
    font-weight: 700;
}

.info-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all var(--animation-speed) var(--animation-ease);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform var(--animation-speed) var(--animation-ease);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--animation-speed) ease;
}

.info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-text);
}

.info-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.appointment-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.appointment-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.appointment-form .form-group select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #ffffff;
    cursor: pointer;
}

.appointment-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   ENHANCED HOVER EFFECTS
   ============================================ */

.nav-menu a {
    position: relative;
    transition: color var(--animation-speed) ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--animation-speed) var(--animation-ease);
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo {
    transition: transform var(--animation-speed) var(--animation-ease);
}

.logo:hover {
    transform: scale(1.05);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.2rem;
}

.footer-section h4 {
    font-size: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--accent-color);
    text-decoration: underline;
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

.page-content {
    padding: 3rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--dark-text);
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    font-weight: 600;
}

.content-section p,
.content-section ul {
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.25rem;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.highlight-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    margin: 2rem 0;
}

.feature-box {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 3px solid var(--primary-color);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 600;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.feature-item-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.feature-item-icon i {
    font-size: inherit;
}

.feature-item-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu a {
        color: var(--light-text);
    }
    
    .btn-appointment {
        margin-top: 0.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.9rem;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .value-card,
    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .value-card,
    .service-card {
        padding: 1.25rem;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .appointment-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .appointment-form {
        padding: 1.5rem;
    }

    /* Optimize animations for mobile */
    .value-card:hover,
    .service-card:hover,
    .info-card:hover {
        transform: none;
    }

    /* Reduce animation delays on mobile for better performance */
    .animate-slide-up,
    .animate-fade-in-delay,
    .animate-slide-up-delay {
        animation-delay: 0s !important;
    }

    /* Social Media Mobile Styles */
    .social-icons,
    .social-icons-footer {
        justify-content: center;
    }

    .social-icon,
    .social-icon-footer {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }

    .social-intro,
    .social-intro-footer {
        text-align: center;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .value-card:active,
    .service-card:active {
        transform: scale(0.98);
    }

    .btn-submit:active {
        transform: scale(0.95);
    }

    .social-icon:active,
    .social-icon-footer:active {
        transform: scale(0.95);
    }
}
