/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* ===================== */
/* NAVIGATION - ENHANCED */
/* ===================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: rgb(0, 0, 0);
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.96) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
}

nav.scrolled {
    padding: 10px 40px;
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

nav.scrolled::before {
    opacity: 0.95;
}

.scrolled-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.scrolled-up {
    transform: translateY(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo {
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

nav.scrolled .logo {
    transform: scale(0.95);
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}


/* Navigation Links */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover Effects */
.nav-link:hover span {
    color: #0170C1;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(1, 112, 193, 0.4);
}

/* Underline Animation */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0170C1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active State */
.nav-link.active span {
    color: #0170C1;
    text-shadow: 0 0 10px rgba(1, 112, 193, 0.5);
}

.nav-link.active::before {
    transform: scaleX(1);
    animation: underlineExpand 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons a {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Book Button */
.book {
    background-color: #0170C1;
    color: rgb(255, 255, 255);
    border: 2px solid #0170C1;
    animation: pulse 2s infinite;
}

.book.btn-hover-effect:hover {
    background-color: #015da1;
    border-color: #015da1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 112, 193, 0.3);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 112, 193, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(1, 112, 193, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 112, 193, 0);
    }
}

/* Button Hover Effect */
.btn-hover-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-hover-effect:hover::before {
    left: 100%;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #0170C1;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #0170C1;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 80px 40px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .nav-links li a {
        font-size: 18px;
    }
    
    .nav-link:hover span {
        transform: translateX(5px);
    }
    
    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-buttons a {
        justify-content: center;
        width: 100%;
    }
    
    .logo img {
        height: 50px;
    }
}




/* Contact Page Specific Styles with Animations */
.contact-hero {
    height: 90vh;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Hero image with parallax effect */
.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.1); /* Slightly zoomed for parallax effect */
    transition: transform 0.8s ease-out;
}

.contact-hero.loaded .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.4) 100%
    ); /* Gradient overlay for depth */
    z-index: 1;
    opacity: 0;
    animation: fadeInOverlay 1s ease-out 0.5s forwards;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpContent 1s ease-out 0.8s forwards;
}

@keyframes fadeInUpContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-content h1 {
    font-size: 56px; /* Reduced from 72px */
    margin-bottom: 20px;
    letter-spacing: 2px; /* Reduced from 3px */
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpTitle 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUpTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

.contact-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpText 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUpText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 48px; /* Reduced from 60px */
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 42px; /* Reduced from 50px */
        letter-spacing: 1.5px; /* Reduced from 2px */
    }
    
    .contact-hero-content p {
        font-size: 17px; /* Slightly reduced */
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px; /* Reduced from 40px */
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .contact-hero-content p {
        font-size: 16px; /* Increased from 15px */
        max-width: 90%;
        margin: 0 auto 20px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.5) 0%, 
            rgba(0, 0, 0, 0.3) 50%, 
            rgba(0, 0, 0, 0.5) 100%
        );
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 60vh;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
        letter-spacing: 0.5px;
    }
    
    .contact-hero-content p {
        font-size: 15px; /* Increased from 14px */
        line-height: 1.5;
    }
    
    .contact-hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 14px; /* Increased from 13px */
    }
}

/* Ensure image doesn't cause horizontal scroll */
.hero-image {
    max-width: 100%;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .hero-overlay,
    .contact-hero-content,
    .contact-hero-content h1,
    .contact-hero-content p {
        animation: none !important;
        transition: none !important;
    }
    
    .contact-hero-content,
    .hero-overlay {
        opacity: 1;
        transform: none;
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Engine Section */
.engine-section {
    background-color: #000;
    color: #fff;
    padding: 80px 40px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-column {
    flex: 1;
    padding: 40px;
    background-color: #111;
    border-radius: 8px;
    height: fit-content;
}

.contact-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.4;
}

.contact-info {
    margin-bottom: 25px;
}

.info-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.info-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0170C1;
}
.info-value a {
    color: #0170C1;
    text-decoration: none;
}
.services-list a {
    color: inherit; /* Keeps your white text color */
    text-decoration: none; /* Removes underline */
    display: block; /* Makes entire area clickable */
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.services-list a:hover {
    color: #0170C1; /* Changes to your blue accent color on hover */
    padding-left: 5px; /* Slight indent on hover */
}

/* Keep all your existing .services-list styles */
.services-list {
    margin-top: 50px;
}

.services-list h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.services-list h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0170C1;
}

.services-list ul {
    list-style: none;
}

.services-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease; /* Added for smooth hover effect */
    cursor: pointer; /* Changes cursor to indicate clickable */
}

.services-list li:hover {
    background-color: rgba(1, 112, 193, 0.1); /* Subtle hover background */
}

.services-list li:last-child {
    border-bottom: none;
}

/* Style for active service */
.services-list a.active-service {
    color: #0170C1 !important;
    font-weight: 700;
}

.services-list li.active-service-item {
    background-color: rgba(1, 112, 193, 0.1);
    border-left: 3px solid #0170C1;
    padding-left: 10px;
}
/* Exterior Detailing Styling */
.content-column h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.text-content {
    flex: 1;
}

.text-content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.service-packages, .included-services, .ultimate-packages {
    margin: 30px 0;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    border-left: 4px solid #0170C1;
}

.service-packages h3, .included-services h3, .ultimate-packages h3 {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(1, 112, 193, 0.15);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.package-item:hover {
    background: rgba(1, 112, 193, 0.25);
    transform: translateX(5px);
}

.vehicle-type {
    color: #e0e0e0;
    font-weight: 500;
}

.price {
    color: #0170C1;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.service-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.service-category h4 {
    color: white;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.service-item i {
    color: #0170C1;
    font-size: 14px;
}

.service-item span {
    color: #ccc;
}

.cta-section {
    display: block;
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(1, 112, 193, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    border: 1px solid rgba(1, 112, 193, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section:hover {
    background: linear-gradient(135deg, rgba(1, 112, 193, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-color: rgba(1, 112, 193, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(1, 112, 193, 0.4);
}

.cta-text {
    color: #fff;
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button {
    display: inline-block;
    background: #0170C1;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #015a9e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(1, 112, 193, 0.4);
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-content img {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-wrapper {
        flex-direction: column;
    }
    
    .image-content img {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 992px) {
    .engine-section {
        padding: 60px 30px;
    }
    
    .content-column h1 {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .engine-section {
        padding: 50px 20px;
    }
    
    .container {
        gap: 30px;
    }
    
    .contact-column {
        padding: 25px;
    }
    
    .content-column h1 {
        font-size: 36px;
    }
    
    .text-content p {
        font-size: 16px;
    }
    
    .service-packages, .included-services, .ultimate-packages {
        padding: 15px;
    }
    
    .package-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-section {
        padding: 20px;
    }
    
    .services-list li {
        font-size: 13px;
        padding: 10px 0;
    }
}

@media (max-width: 576px) {
    .engine-section {
        padding: 40px 15px;
    }
    
    .content-column h1 {
        font-size: 32px;
    }
    
    .contact-column {
        padding: 20px 15px;
    }
    
    .contact-header h3 {
        font-size: 16px;
    }
    
    .info-value {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text {
        font-size: 16px;
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .image-content img {
        height: 250px;
    }
}

@media (max-width: 400px) {
    .content-column h1 {
        font-size: 28px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    .services-list h4 {
        font-size: 14px;
    }
    
    .services-list li {
        font-size: 12px;
    }
    
    .image-content img {
        height: 200px;
    }
}

/* For very large screens (optional) */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
    
    .content-column h1 {
        font-size: 60px;
    }
    
    .text-content p {
        font-size: 20px;
    }
}

/* Footer Styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

.premium-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}



.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin: 0 auto;
    padding: 0 40px 60px;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.footer-column {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 1.5px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4 span {
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0170C1 0%, #00C6FF 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 80px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-column li:hover {
    transform: translateX(5px);
}



.footer-column a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a i {
    width: 20px;
    text-align: center;
    color: #0170C1;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column a:hover i {
    color: #00C6FF;
    transform: scale(1.2);
}

.footer-contact-column .footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-column:hover .footer-contact {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(1, 112, 193, 0.5);
}

.footer-contact p {
    margin: 0 0 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: #0170C1;
    margin-top: 3px;
    font-size: 1rem;
}



.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.social-icons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover::after {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: #b0b0b0;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 5px;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0170C1;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-copyright p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}


/* Floating Buttons */
.whatsapp-cta,
.back-to-top {
    position: fixed;
    right: 20px;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.whatsapp-cta {
    bottom: 80px;
}

.back-to-top {
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Floating Button Style */
.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-cta .floating-btn {
    background-color: #25D366;
}

/* Back to Top Button */
.back-to-top .floating-btn {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
}

/* Hover Effects */
.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover i {
    transform: scale(1.15);
}

/* Tooltip on hover */
.floating-btn::after {
    content: attr(aria-label);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-cta .floating-btn::after {
    background-color: #25D366;
    color: white;
}

.back-to-top .floating-btn::after {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    color: white;
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 55px;
}

/* Subtle pulse animation for WhatsApp */
@keyframes subtlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-cta .floating-btn {
    animation: subtlePulse 3s infinite ease-in-out;
}
/* Tablet devices (768px and below) */
@media screen and (max-width: 768px) {
    .whatsapp-cta,
    .back-to-top {
        right: 15px;
    }
    
    .whatsapp-cta {
        bottom: 70px;
    }
    
    .back-to-top {
        bottom: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
    
    .floating-btn::after {
        font-size: 11px;
        padding: 5px 10px;
        right: 50px;
    }
    
    .floating-btn:hover::after {
        right: 45px;
    }
}

/* Mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .whatsapp-cta,
    .back-to-top {
        right: 10px;
    }
    
    .whatsapp-cta {
        bottom: 60px;
    }
    
    .back-to-top {
        bottom: 10px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
    }
    
    .floating-btn i {
        font-size: 16px;
    }
    
    .floating-btn::after {
        display: none; /* Hide tooltips on very small screens */
    }
    
    /* Reduce animation intensity on mobile */
    .whatsapp-cta .floating-btn {
        animation: subtlePulse 4s infinite ease-in-out;
    }
    
    .floating-btn:hover {
        transform: translateY(-2px);
    }
}

/* Large screens (1200px and above) */
@media screen and (min-width: 1200px) {
    .whatsapp-cta,
    .back-to-top {
        right: 30px;
    }
    
    .whatsapp-cta {
        bottom: 90px;
    }
    
    .back-to-top {
        bottom: 30px;
    }
}

/* Reduced motion preference for accessibility */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-cta,
    .back-to-top,
    .floating-btn,
    .floating-btn i {
        transition: none;
    }
    
    .whatsapp-cta .floating-btn {
        animation: none;
    }
    
    .floating-btn:hover {
        transform: none;
    }
    
    .floating-btn:hover i {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .floating-btn {
        border: 2px solid white;
    }
}



/* Add this to your existing media queries */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px 40px;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 0 15px 30px;
    }
    
    .footer-contact p {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-main {
        padding: 0 30px 50px;
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px 30px;
    }
}