/* contact-styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fefaf5;
    color: #2d2a24;
    line-height: 1.5;
}

:root {
    --red: #b33a2c;
    --maroon: #7d2e24;
    --terracotta: #c96e4b;
    --wood: #a57c5c;
    --grey-dark: #2f2e2b;
    --grey-soft: #5c5a53;
    --bg-light: #fdf7f0;
    --shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
header {
    background: var(--grey-dark);
    color: white;
    padding: 0.8rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.9rem;
    color: white;
    line-height: 1.1;
}

.logo span {
    color: var(--red);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 3px;
    display: block;
}

.nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
    border-bottom-color: var(--red);
    color: white;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--red) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Info Cards Section */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: var(--red);
    color: white;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-content {
    padding: 2rem;
    flex: 1;
}

.card-content h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

/* Parking Card Specific */
.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list i {
    color: var(--red);
}

.parking-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-top: 0.5rem;
}

.parking-badge i {
    margin-right: 0.5rem;
}

/* Car Wash Card Specific */
.wash-packages {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.wash-package {
    flex: 1;
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 1rem;
    min-width: 140px;
}

.wash-package.premium {
    background: #fff3e0;
    border: 2px solid var(--terracotta);
}

.package-name {
    display: block;
    font-weight: 700;
    color: var(--grey-dark);
    margin-bottom: 0.3rem;
}

.package-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    font-size: 0.9rem;
}

.package-features li {
    margin-bottom: 0.3rem;
    color: var(--grey-soft);
}

.carpet-wash {
    background: #e1f5fe;
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carpet-wash i {
    font-size: 2rem;
    color: #0288d1;
}

.wash-note {
    color: var(--grey-soft);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Split Container */
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Map Side */
.map-side {
    padding: 2rem;
    background: linear-gradient(45deg, #f5f5f5, #ffffff);
}

.map-side h3 {
    color: var(--maroon);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.map-side h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.map-container {
    height: 350px;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-coordinates {
    margin-top: 1rem;
    font-family: monospace;
    color: var(--grey-soft);
    background: #f0f0f0;
    padding: 0.8rem;
    border-radius: 0.5rem;
    text-align: center;
}

.map-coordinates i {
    color: var(--red);
    margin-right: 0.5rem;
}

/* Contact Side */
.contact-side {
    padding: 2rem;
    background: white;
}

.contact-side h3 {
    color: var(--maroon);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-side h3 i {
    color: var(--red);
    margin-right: 0.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #f0e0d0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--red);
    min-width: 2rem;
}

.contact-item h4 {
    color: var(--grey-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--grey-soft);
    line-height: 1.6;
}

.contact-item.highlight {
    background: #fff3e0;
    padding: 1rem;
    border-radius: 1rem;
    border-bottom: none;
}

.phone-number {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--maroon);
}

.phone-number i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.phone-hint {
    font-size: 0.85rem;
    color: var(--grey-soft);
    margin-top: 0.3rem;
}

.coordinate-text {
    font-family: monospace;
    background: #f0f0f0;
    padding: 0.3rem 0.5rem;
    border-radius: 0.3rem;
    display: inline-block;
    font-size: 0.9rem;
}

/* Direction Actions */
.direction-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.call-direction-btn {
    background: var(--red);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.call-direction-btn:hover {
    background: var(--maroon);
    transform: scale(1.02);
}

.call-direction-btn i {
    font-size: 1.3rem;
}

.btn-note {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.copy-number-btn {
    background: white;
    color: var(--maroon);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid var(--maroon);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.copy-number-btn:hover {
    background: var(--maroon);
    color: white;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--terracotta);
}

.social-links h4 {
    color: var(--grey-dark);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
}

.social-icons a {
    color: var(--grey-soft);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

/* Info Bar */
.info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: var(--grey-dark);
    color: white;
    padding: 2rem;
    border-radius: 2rem;
    margin: 3rem 0;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.info-bar-item i {
    color: var(--red);
    font-size: 1.5rem;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 20px #00000044;
    z-index: 99;
    transition: 0.2s;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* Responsive Design */
@media (max-width: 900px) {
    .split-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .info-card {
        flex-direction: column;
    }
    
    .card-icon {
        padding: 1.5rem;
    }
}

@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav ul {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .direction-actions {
        flex-direction: column;
    }
    
    .wash-packages {
        flex-direction: column;
    }
    
    .info-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-bar-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-bottom: 0.3rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Animation for copy feedback */
@keyframes copySuccess {
    0% { background: white; }
    50% { background: #c8e6c9; }
    100% { background: white; }
}

.copy-success {
    animation: copySuccess 0.5s ease;
}
/* Footer Styles - Matching Grill Menu */
footer {
    background: var(--grey-dark);
    color: #aaa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--red);
    transform: translateX(5px);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section i {
    color: var(--red);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #aaa;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--red);
    transform: translateY(-3px);
}

.parking-badge-footer {
    background: rgba(179, 58, 44, 0.2);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.parking-badge-footer i {
    color: var(--red);
    margin-right: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.95rem;
}

.footer-bottom i {
    color: var(--red);
    margin: 0 0.2rem;
}

/* Responsive Footer */
@media (max-width: 700px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
/* Car Wash Card - Enhanced Styles */
.wash-packages-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.wash-package-contact {
    background: #fdf7f0;
    padding: 1rem;
    border-radius: 1rem;
    border-left: 4px solid var(--red);
}

.wash-package-contact.premium {
    background: #fff3e0;
    border-left-color: #ff9800;
}

.wash-package-contact .package-name {
    font-weight: 700;
    color: var(--maroon);
    font-size: 1rem;
    display: inline-block;
}

.wash-package-contact .package-price-contact {
    float: right;
    font-weight: 800;
    color: var(--red);
    font-size: 1rem;
}

.package-features-contact {
    list-style: none;
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.package-features-contact li {
    margin-bottom: 0.3rem;
    color: var(--grey-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features-contact li i {
    color: var(--red);
    font-size: 0.7rem;
}

.wash-more-services {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem 0;
}

.wash-more-services i {
    color: var(--red);
    margin-right: 0.5rem;
}

.wash-more-services span {
    font-weight: 600;
    color: var(--grey-dark);
}

.more-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.more-services-list span {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--grey-soft);
    border: 1px solid #e0e0e0;
}

.btn-wash-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin: 1rem 0;
    width: 100%;
    justify-content: center;
}

.btn-wash-link:hover {
    background: var(--maroon);
    transform: scale(1.02);
}

.loyalty-badge-contact {
    background: linear-gradient(135deg, #fff3e0, #ffe6cc);
    padding: 0.8rem;
    border-radius: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--maroon);
    border: 1px solid var(--terracotta);
}

.loyalty-badge-contact i {
    color: #ff9800;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 700px) {
    .wash-package-contact .package-price-contact {
        float: none;
        display: inline-block;
        margin-left: 0.5rem;
    }
    
    .more-services-list {
        justify-content: center;
    }
    
    .btn-wash-link {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

@media (max-width: 480px) {
    .wash-package-contact {
        text-align: center;
    }
    
    .wash-package-contact .package-price-contact {
        display: block;
        margin-top: 0.3rem;
    }
    
    .package-features-contact li {
        justify-content: center;
    }
}