/* ==========================================
   ELITE SHINE AUTO DETAILING - MAIN STYLES
   =========================================== */

/* Root Variables */
:root {
    --primary-dark: #0B0F19;
    --accent-cyan: #00E5FF;
    --secondary-gray: #1F2937;
    --text-light: #F3F4F6;
    --text-muted: #9CA3AF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   GLOBAL STYLES
   =========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==========================================
   CUSTOM CURSOR
   =========================================== */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 20px var(--accent-cyan);
    display: none;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    display: none;
    transition: var(--transition);
}

@media (hover: hover) {
    .cursor {
        display: block;
    }
    
    .cursor-ring {
        display: block;
    }
    
    * {
        cursor: none !important;
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 15, 25, 0.98);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px var(--accent-cyan);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-cyan);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-cyan);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 60px;
    background: var(--primary-dark);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomInSlow 1.5s ease-out;
}

@keyframes zoomInSlow {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9), rgba(0, 229, 255, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* ==========================================
   CTA BUTTONS
   =========================================== */

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--accent-cyan), #0099CC);
    color: var(--primary-dark);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    font-family: 'Poppins', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==========================================
   SECTIONS & TYPOGRAPHY
   =========================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    border-radius: 2px;
}

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

/* ==========================================
   SERVICES PREVIEW
   =========================================== */

.services-preview {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-gray));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

/* ==========================================
   WHY CHOOSE US
   =========================================== */

.why-choose-us {
    background: var(--primary-dark);
}

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

.feature {
    text-align: center;
    transition: var(--transition);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(-10deg);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
   =========================================== */

.testimonials {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-cyan);
}

.testimonial-author h4 {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   FINAL CTA
   =========================================== */

.final-cta {
    background: linear-gradient(135deg, var(--accent-cyan), #0099CC);
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.final-cta p {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: var(--primary-dark);
    color: var(--accent-cyan);
    border: 2px solid var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.final-cta .cta-button:hover {
    background: transparent;
    color: var(--primary-dark);
}

/* ==========================================
   PAGE HEADER
   =========================================== */

.page-header {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
    padding: 150px 20px 80px;
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 800;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--accent-cyan);
}

/* ==========================================
   ABOUT SECTIONS
   =========================================== */

.about-section {
    background: var(--primary-dark);
}

.about-section.alt {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 800;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 229, 255, 0.2);
    transition: var(--transition);
}

.about-image:hover img {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    transform: scale(1.02);
}

/* ==========================================
   CREDENTIALS
   =========================================== */

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

.credential-card {
    background: rgba(31, 41, 55, 0.6);
    border: 2px solid rgba(0, 229, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.credential-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.credential-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.credential-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   TEAM SECTION
   =========================================== */

.team-section {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
}

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

.team-member {
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-15px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h3,
.team-member p {
    padding: 15px 20px;
}

.team-member h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.team-member p:first-of-type {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin: 0;
}

.team-member .member-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 20px !important;
}

/* ==========================================
   VALUES SECTION
   =========================================== */

.values-section {
    background: var(--primary-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   SERVICES DETAILED PAGE
   =========================================== */

.services-detailed {
    background: var(--primary-dark);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-image img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(0, 229, 255, 0.2);
    transition: var(--transition);
}

.service-detail-image:hover img {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
    transform: scale(1.02);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-detail-header i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--text-light);
    font-weight: 800;
}

.service-detail-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.service-features li {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.1rem;
    color: var(--accent-cyan);
    margin: 20px 0;
    font-weight: 600;
}

/* ==========================================
   PACKAGES SECTION
   =========================================== */

.packages-section {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: rgba(31, 41, 55, 0.7);
    border: 2px solid rgba(0, 229, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.package-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.package-card.featured:hover {
    transform: scale(1.07) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 800;
}

.package-price {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    font-weight: 800;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.package-card li {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-card i {
    color: var(--accent-cyan);
}

/* ==========================================
   GALLERY SECTION
   =========================================== */

.gallery-section {
    background: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    cursor: pointer;
    border: 2px solid rgba(0, 229, 255, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--accent-cyan);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.8), rgba(0, 153, 204, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--primary-dark);
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==========================================
   GALLERY STATS
   =========================================== */

.gallery-stats {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

.contact-section {
    background: var(--primary-dark);
}

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

.contact-form-wrapper {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

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

.form-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
}

/* ==========================================
   CONTACT INFO
   =========================================== */

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 800;
}

.info-card {
    background: rgba(31, 41, 55, 0.5);
    border-left: 3px solid var(--accent-cyan);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateX(10px);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.info-card h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   SOCIAL CONTACT
   =========================================== */

.social-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.social-contact h3 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 229, 255, 0.15);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==========================================
   MAP SECTION
   =========================================== */

.map-section {
    background: linear-gradient(135deg, var(--secondary-gray), var(--primary-dark));
    padding: 60px 0;
}

.map-section .section-title {
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 229, 255, 0.2);
    max-width: 100%;
}

/* ==========================================
   FAQ SECTION
   =========================================== */

.faq-section {
    background: var(--primary-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-item {
    background: rgba(31, 41, 55, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 600;
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

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

.footer {
    background: rgba(11, 15, 25, 0.95);
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section h3 i {
    margin-right: 8px;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   SCROLL TO TOP
   =========================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), #0099CC);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.5);
}

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 25, 0.98);
        padding: 20px;
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        margin-top: 0;
    }

    .about-content,
    .about-content.reverse,
    .service-detail,
    .service-detail.reverse,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    section {
        padding: 50px 0;
    }

    .page-header {
        padding: 100px 20px 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .credential-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .nav-brand span {
        display: none;
    }

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

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

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    section {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 25px;
    }

    .about-text h2,
    .contact-form-wrapper h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 2rem;
    }

    .gallery-item {
        height: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .final-cta p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}