
/* QuikSelect Car Rental - Main Stylesheet */

:root {
    --gold: #B8860B;
    --gold-light: #FFD700;
    --gold-dark: #996515;
    --black: #000000;
    --black-pearl: #0F0F0F;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --green: #25D366;
    --green-dark: #128C7E;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--black);
}

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

/* Typography */
.text-gold {
    color: var(--gold-light);
}

.text-gold-on-white {
    color: var(--gold-dark);
}

.text-white {
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

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

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

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gold-light);
    margin-top: -4px;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    margin: 0.5rem 1rem;
    padding: 0.5rem;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold-light);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(255,199,0,0.1) 100%);
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold-light);
    margin: 0 auto 0.75rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    color: var(--gray-200);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

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

    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
    transform: scale(1.05);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--black-pearl);
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-divider {
    width: 6rem;
    height: 4px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* About Section */
.about-section {
    background: var(--black);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.about-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.about-text {
    color: var(--gray-300);
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.about-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: var(--gray-300);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--gray-300);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Featured Cars Section */
.featured-cars-section {
    background: var(--black);
}

.cars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.car-image-wrapper {
    position: relative;
    height: 12rem;
    background: rgba(0, 0, 0, 0.3);
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.car-details {
    padding: 1.5rem;
}

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

.car-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.car-meta {
    color: var(--gray-300);
    font-size: 0.875rem;
    text-transform: capitalize;
}

.car-price {
    text-align: right;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
}

.price-period {
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* WhatsApp Pricing Container */
.whatsapp-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.whatsapp-price-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #000000;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.whatsapp-price-btn:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.whatsapp-price-text {
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.spec-icon {
    width: 1rem;
    height: 1rem;
}

.car-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-car-action {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.btn-view {
    background: var(--gold);
    color: var(--black);
}

.btn-view:hover {
    background: var(--gold-dark);
}

.btn-book {
    background: var(--black);
    color: var(--white);
}

.btn-book:hover {
    background: var(--black-pearl);
}

@media (min-width: 768px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.why-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.why-icon {
    width: 2rem;
    height: 2rem;
    color: var(--gold-light);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-text {
    color: var(--gray-300);
    line-height: 1.6;
}

.cta-banner {
    background: var(--black);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-title {
        font-size: 3rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--black);
}

.testimonial-carousel {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.testimonial-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    width: 3rem;
    height: 3rem;
    color: var(--gold-light);
    margin: 0 auto 1.5rem;
}

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

.testimonial-stars {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.author-location {
    color: var(--gold-light);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -1rem;
}

.carousel-btn-next {
    right: -1rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: var(--gold-light);
}

@media (min-width: 768px) {
    .testimonial-container {
        padding: 3rem;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.footer-logo-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-tagline {
    color: var(--gold-light);
    font-size: 0.875rem;
}

.footer-description {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold-light);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-item a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* WhatsApp Float Button */
/* FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #D1D5DB;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #FFD700;
}

/* Enquiry Float Button */
.enquiry-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.enquiry-float:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(212, 175, 55, 0.5));
}

.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 25px rgba(37, 211, 102, 0.3));
    transition: all 0.3s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(37, 211, 102, 0.5));
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Update footer grid for 3 columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

@media (max-width: 768px) {
    .social-links {
        justify-content: flex-start;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

/* Payment Method Logos */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.payment-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.95);
}

.payment-icon:hover {
    transform: translateY(-2px) scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .payment-logos {
        gap: 1rem;
    }
    
    .payment-icon {
        height: 28px;
    }
}

/* Contact Section - 4 Column Grid Responsive */
@media (max-width: 1024px) {
    section div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 640px) {
    section div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

/* Contact Section - 4 Column Grid Responsive Styling */
.contact-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 1100px) {
    .contact-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .contact-grid-4col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Contact Section Hover Effects */
.contact-icon-circle {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.contact-link:hover {
    color: #D4AF37 !important;
}
