/* ========================================
   PULL UP SHINE - MOBILE DETAILING
   Color Scheme: Vibrant Red & Teal (matching logo)
   ======================================== */

:root {
    --primary-red: #e63946;
    --primary-dark: #0d1b2a;
    --primary-teal: #00d4ff;
    --accent-cyan: #00ffcc;
    --gradient-start: #0d1b2a;
    --gradient-mid: #1b263b;
    --gradient-end: #415a77;
    --gold: #ffd700;
    --orange: #ff9900;
    --white: #ffffff;
    --light-gray: #f0f4f8;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
    --shadow-hover: 0 20px 60px rgba(0, 212, 255, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Legacy support */
    --primary-blue: #00d4ff;
    --accent-blue: #00d4ff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 26, 51, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

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

.logo-pull {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #ff6b6b;
    font-weight: 700;
}

.logo-shine {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-cyan));
    transition: var(--transition);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

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

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 40px;
    height: 40px;
    left: 80%;
    top: 60%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 30%;
    top: 70%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 70%;
    top: 10%;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 50px;
    height: 50px;
    left: 5%;
    top: 80%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
}

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

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.hero h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.hero-pull {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 0.6s ease-out;
}

.hero-shine {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 0.6s ease-out, shimmer 3s linear infinite;
    text-shadow: none;
}

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

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

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 30px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-promo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    padding: 15px 30px;
    border-radius: 50px;
    animation: fadeInUp 0.6s ease-out 0.5s both, pulse 2s ease-in-out infinite;
}

.promo-badge {
    background: var(--white);
    color: var(--orange);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.promo-text {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}

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

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

.why-us {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

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

.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-teal);
}

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

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: start;
}

.price-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    transform: scale(1.05);
    z-index: 2;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--text-dark);
    padding: 8px 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.car-icon::before {
    content: '🚗';
    font-size: 1.8rem;
}

.interior-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.interior-icon::before {
    content: '🧽';
    font-size: 1.8rem;
}

.detail-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-light));
}

.detail-icon::before {
    content: '✨';
    font-size: 1.8rem;
}

.addon-icon {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
}

.addon-icon::before {
    content: '➕';
    font-size: 1.8rem;
}

.price-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.price-card.featured h3 {
    color: var(--white);
}

.price-amount {
    text-align: center;
    margin-bottom: 10px;
}

.price-amount .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    color: var(--primary-blue);
}

.price-amount .number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
}

.price-card.featured .currency,
.price-card.featured .number {
    color: var(--white);
}

.price-description {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-card.featured .price-description {
    color: rgba(255,255,255,0.8);
}

.price-promo {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

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

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.price-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
}

.price-card.featured .price-features li::before {
    color: var(--accent-blue);
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* Add-ons Card */
.price-card.addons {
    background: var(--white);
}

.addon-list {
    margin-bottom: 25px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.addon-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addon-icon-small {
    font-size: 1.2rem;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-blue);
}

.addon-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

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

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
}

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

.contact-info h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.social-links h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #3b5998);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.social-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-link:has(img:only-child) {
    padding: 12px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
}

.social-emoji {
    font-size: 1.4rem;
}

/* Location styling */
.contact-method.location {
    background: rgba(255,255,255,0.1);
    margin-top: 15px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition);
    background: var(--white);
    padding: 0 5px;
}

.form-group textarea + label {
    top: 25px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-blue);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 18px 35px;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

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

.footer {
    background: var(--gradient-start);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.3rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px) scale(1.1);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-social-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-location {
    margin-top: 8px;
    color: var(--primary-teal) !important;
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero-pull {
        font-size: 2.5rem;
    }

    .hero-shine {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .price-card {
        max-width: 100%;
        margin: 0 auto;
    }

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

    .contact-form {
        padding: 30px 25px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-content {
        padding: 0 10px;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
    }
}

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

    .hero-shine {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }

    .hero-promo {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        max-width: 90%;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .social-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .social-link {
        width: auto;
        padding: 12px;
        border-radius: 50%;
    }

    .social-link:has(img:only-child) {
        width: 55px;
        height: 55px;
    }

    /* Faster animations on mobile */
    .hero-logo,
    .hero-tagline,
    .hero-description,
    .hero-buttons,
    .hero-promo {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
    }

    .why-card,
    .service-card,
    .price-card,
    .contact-method,
    .social-link {
        transition-duration: 0.2s !important;
        transition-delay: 0s !important;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
   ======================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
}

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

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-blue));
}
