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

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #F5F5F5;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(10, 61, 98, 0.3);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffd700;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    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"><circle cx="15" cy="25" r="1.5" fill="%23ffffff" opacity="0.6"/><circle cx="85" cy="15" r="2" fill="%23ffffff" opacity="0.4"/><circle cx="30" cy="70" r="1" fill="%23ffffff" opacity="0.8"/><circle cx="75" cy="60" r="1.5" fill="%23ffffff" opacity="0.5"/><circle cx="50" cy="40" r="1" fill="%23ffffff" opacity="0.7"/><circle cx="20" cy="80" r="2" fill="%23ffffff" opacity="0.3"/></svg>') repeat;
    animation: waterDrops 15s infinite linear;
}

@keyframes waterDrops {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* Water drops sparkle effect */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 1px, transparent 1px),
                radial-gradient(circle at 40% 70%, rgba(255,255,255,0.1) 1px, transparent 1px);
    animation: sparkle 8s infinite ease-in-out;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideInLeft 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-image {
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(10, 61, 98, 0.3)) brightness(1.1) contrast(1.1);
    animation: premiumFloat 6s infinite ease-in-out;
    position: relative;
    z-index: 3;
}

@keyframes premiumFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* Premium car shine effect */
.hero-image::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: carShine 4s infinite ease-in-out;
    z-index: 4;
    pointer-events: none;
}

@keyframes carShine {
    0%, 100% { opacity: 0; transform: translateX(-100px); }
    50% { opacity: 1; transform: translateX(100px); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(10, 61, 98, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 61, 98, 0.5);
    background: linear-gradient(135deg, #00B4D8 0%, #0A3D62 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.btn-outline {
    background: transparent;
    color: #0A3D62;
    border: 2px solid #0A3D62;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background: #0A3D62;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.3);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0A3D62;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #F5F5F5;
    overflow-x: hidden;
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.video-section {
    margin-bottom: 4rem;
}

.video-section h3 {
    text-align: center;
    color: #0A3D62;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

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

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #F5F5F5;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-card h4 {
    padding: 1rem;
    text-align: center;
    color: #333;
    margin: 0;
}

.photo-section h3 {
    text-align: center;
    color: #008B8B;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.photo-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 14px 28px;
    border: 2px solid #0A3D62;
    background: transparent;
    color: #0A3D62;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 61, 98, 0.3);
}

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

.photo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #F5F5F5;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.9) 0%, rgba(0, 180, 216, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay h4 {
    margin: 0;
    text-align: center;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.before-img,
.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-img {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transition: clip-path 0.3s;
}

.before-after-container:hover .after-img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    z-index: 10;
    transition: left 0.3s;
}

.before-after-container:hover .slider {
    left: 100%;
}

.photo-card p {
    padding: 1rem;
    text-align: center;
    margin: 0;
    background: white;
    color: #333;
    font-weight: 600;
}

/* YouTube Section */
.youtube-section {
    margin-bottom: 3rem;
}

.youtube-section h4 {
    text-align: center;
    color: #008B8B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.youtube-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15);
    transition: transform 0.3s;
}

.youtube-card:hover {
    transform: translateY(-5px);
}

.youtube-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.youtube-card h5 {
    padding: 1rem;
    text-align: center;
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.youtube-channel-link {
    text-align: center;
    margin-bottom: 2rem;
}

.local-video-section h4 {
    text-align: center;
    color: #008B8B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Social Media Section */
.social-media-section {
    margin-top: 4rem;
    text-align: center;
}

.social-media-section h3 {
    color: #008B8B;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.social-media-section p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.25);
}

.social-btn.facebook {
    border-color: #1877f2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-btn.youtube {
    border-color: #ff0000;
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-btn.whatsapp {
    border-color: #25d366;
}

.social-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-btn i {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.social-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.social-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 245, 245, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(10, 61, 98, 0.15);
    border-color: #00B4D8;
}

.service-card i {
    font-size: 3.5rem;
    color: #00B4D8;
    margin-bottom: 1.5rem;
    text-shadow: none;
    font-weight: 300;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover i {
    color: #0A3D62;
    transform: scale(1.1);
    opacity: 1;
}

/* Minimalist line-style icons */
.service-card .fas.fa-car::before { content: '🚗'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }
.service-card .fas.fa-spray-can::before { content: '💧'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }
.service-card .fas.fa-tshirt::before { content: '👔'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }
.service-card .fas.fa-shield-alt::before { content: '🛡️'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }
.service-card .fas.fa-handshake::before { content: '🤝'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }
.service-card .fas.fa-recycle::before { content: '♻️'; font-family: 'Apple Color Emoji', 'Segoe UI Emoji'; }

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0A3D62;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.service-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #F5F5F5;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(10, 61, 98, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #00B4D8;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(10, 61, 98, 0.2);
    border-color: #0A3D62;
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
}

.plan-card:hover .plan-name,
.plan-card:hover .plan-tagline,
.plan-card:hover .plan-features li {
    color: white;
}

.plan-card:hover .pricing-tab:not(.active) {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.plan-card:hover .pricing-tab:not(.active) .price,
.plan-card:hover .pricing-tab:not(.active) .car-type {
    color: white;
}

.plan-card:hover .btn-plan {
    background: white;
    color: #0A3D62;
}

.plan-card.popular {
    transform: scale(1.05);
    border: 2px solid #00B4D8;
    box-shadow: 0 16px 48px rgba(10, 61, 98, 0.2);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    white-space: nowrap;
    z-index: 15;
    transform: rotate(12deg);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.plan-card:hover .popular-tag {
    color: white;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

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

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.plan-tagline {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.plan-pricing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-tab {
    background: #F5F5F5;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0.8rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-tab:hover {
    background: rgba(0, 180, 216, 0.1);
    border-color: #00B4D8;
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    border-color: #0A3D62;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.3);
}

.pricing-tab .price {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0A3D62;
    margin-bottom: 0.3rem;
}

.pricing-tab .car-type {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.pricing-tab.active .price {
    color: white;
}

.pricing-tab.active .car-type {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #333;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(245, 245, 245, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00B4D8;
    font-weight: bold;
}

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

.btn-plan {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 61, 98, 0.3);
    background: linear-gradient(135deg, #00B4D8 0%, #0A3D62 100%);
}

/* Plan specific styling */
.plan-card.spark .plan-badge {
    background: linear-gradient(135deg, #00B4D8 0%, #0A3D62 100%);
}

.plan-card.shine .plan-badge {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
}

.plan-card.glow .plan-badge {
    background: linear-gradient(135deg, #00B4D8 0%, #0A3D62 100%);
}

.plan-card.crystal .plan-badge {
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
}





/* On Demand Description */
.on-demand-desc {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #00CED1 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.2);
    transition: all 0.3s;
    border: 1px solid rgba(0, 206, 209, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 206, 209, 0.3);
}

.feature-card i {
    font-size: 3rem;
    color: #008B8B;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: #00B4D8;
    width: 50px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00B4D8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: #008B8B;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: white;
}

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

.review-card {
    background: #F5F5F5;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 61, 98, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #00B4D8;
    border: 1px solid rgba(245, 245, 245, 0.8);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0A3D62 0%, #00B4D8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(10, 61, 98, 0.2);
}

.customer-details h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
}

.customer-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.add-review-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.add-review-section h3 {
    text-align: center;
    color: #008B8B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-top: 0.5rem;
}

.star-rating i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.star-rating i:hover,
.star-rating i.fas {
    color: #ffd700;
}

.star-rating i:hover ~ i {
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-pricing-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .pricing-tab {
        padding: 0.6rem 0.3rem;
    }
    
    .pricing-tab .car-type {
        font-size: 0.75rem;
    }
    
    .pricing-tab .price {
        font-size: 0.8rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .category-image {
        width: 80px;
        height: 60px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    

    
    .on-demand-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        padding: 12px;
    }
    
    .services-grid,
    .features-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .add-review-section {
        padding: 2rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Success and Error Messages */
.success-message,
.error-message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    font-weight: 500;
    max-width: 300px;
    word-wrap: break-word;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.success-message {
    background: #28a745;
    color: white;
}

.error-message-popup {
    background: #dc3545;
    color: white;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card,
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .success-message,
    .error-message-popup {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        margin-bottom: 0.5rem;
    }
    
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-btn {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }
    
    .gallery {
        padding: 40px 0;
    }
    
    .video-section {
        margin-bottom: 2rem;
    }
    
    .youtube-section {
        margin-bottom: 2rem;
    }
    
    .local-video-section {
        margin-bottom: 2rem;
    }
    
    .photo-section {
        margin-bottom: 2rem;
    }
    
    .social-media-section {
        margin-top: 2rem;
    }
    
    .youtube-card iframe {
        height: 200px;
    }
    
    .video-card video {
        height: 200px;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .before-after-container {
        height: 180px;
    }
    
    .video-card video {
        height: 180px;
    }
    
    .youtube-card iframe {
        height: 180px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0A3D62 0%, #1B4F72 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(10, 61, 98, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #00B4D8 0%, #00CED1 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.6);
    color: white;
}

.whatsapp-btn i {
    font-size: 24px;
}

.whatsapp-text {
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Photo Modal */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

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