@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 {
    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);
}
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.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;
}
.nav-link:hover span {
    color: #0170C1;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(1, 112, 193, 0.4);
}
.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;
}
.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);
    }
}
.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 {
    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);
    }
}
.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 {
    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 {
    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);
}
@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;
    }
}



/* Modern Color Theme Variables - Updated for Black & White */
:root {
    --primary-color: #000000; 
    --secondary-color: #ffffff; 
    --accent-color: #ffffff; 
    --text-light: #ffffff; 
    --text-dark: #ffffff; 
    --bg-light: #000000; 
    --overlay-dark: rgba(0, 0, 0, 0.85);
    --overlay-medium: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

/* Contact Page Specific Styles */
.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-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Single subtle dark overlay */
    z-index: 1;
}

.contact-hero {
    height: 90vh;
    position: relative;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Keep this as white for better contrast */
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}

.contact-hero-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
    letter-spacing: 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;
}

.contact-hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpTitle 0.5s ease-out 0.8s forwards; /* Slightly delayed */
}

@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 Responsive Styles */
@media (max-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 60px;
    }
    
    .contact-hero-content p {
        font-size: 17px;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        height: 80vh;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 50px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
        max-width: 550px;
        margin: 0 auto 25px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
    }
    
    .contact-hero-content h1 {
        font-size: 40px;
        letter-spacing: 1.5px;
    }
    
    .contact-hero-content p {
        font-size: 15px;
        max-width: 90%;
        margin: 0 auto 20px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.3); /* Slightly darker overlay for better text visibility on mobile */
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 60vh;
        margin-top: 60px;
    }
    
    .contact-hero-content {
        padding: 0 15px;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .contact-hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 400px) {
    .contact-hero-content h1 {
        font-size: 28px;
    }
    
    .contact-hero-content p {
        font-size: 13px;
    }
}

/* Tablet landscape optimization */
@media (max-width: 992px) and (orientation: landscape) {
    .contact-hero {
        height: 100vh;
    }
    
    .contact-hero-content h1 {
        font-size: 40px;
    }
}

/* Mobile landscape optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .contact-hero {
        height: 100vh;
    }
    
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .contact-hero-content p {
        font-size: 14px;
        max-width: 80%;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .contact-hero-content h1,
    .contact-hero-content p {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-video {
        /* Ensure high-quality video on retina displays */
        image-rendering: -webkit-optimize-contrast;
    }
}



/* Large screens adjustments */
@media (min-width: 1600px) {
    .contact-hero-content h1 {
        font-size: 84px;
    }
    
    .contact-hero-content p {
        font-size: 20px;
        max-width: 800px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light); /* Now white */
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.services-section {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #0170C1;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 2px;
    background:#0170C1;
    margin: 0 auto 25px;
}

.section-header p {
    color: #878787;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header.animate-in p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.services-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    scrollbar-width: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.services-carousel.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 320px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(1, 112, 193, 0.15);
    border-color: rgba(1, 112, 193, 0.3);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    background: #0170C1;
    transform: rotate(360deg);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.service-card:hover .image-overlay {
    opacity: 0.4;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #0170C1;
}

.service-content p {
    font-family: 'Roboto', sans-serif;
    color: #878787;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-content p {
    color: #cccccc;
}

.service-features {
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.service-card.animate-in .feature {
    opacity: 1;
    transform: translateX(0);
}

.feature:nth-child(1) { transition-delay: 0.1s; }
.feature:nth-child(2) { transition-delay: 0.2s; }
.feature:nth-child(3) { transition-delay: 0.3s; }

.feature svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    color: #0170C1;
    transition: all 0.3s ease;
}

.service-card:hover .feature svg {
    transform: scale(1.2);
}

.feature span {
    color: #878787;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card:hover .feature span {
    color: #cccccc;
}

.service-cta {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: #0170C1;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid #0170C1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0170C1;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-cta:hover {
    color: white;
}

.service-cta:hover:before {
    left: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: #0170C1;
    background: #0170C1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    border: 1px solid #0170C1; 
}

.control-btn:hover {
    background: #0170C1;
    border-color: #0170C1;
}

.control-btn:hover svg {
    stroke: white;
}

.control-btn svg {
    width: 20px;
    height: 20px;
    stroke: #0170C1;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-carousel {
        gap: 20px;
        padding-bottom: 30px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .service-card {
        min-width: 260px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .carousel-controls {
        margin-top: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-card {
        min-width: 240px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Enhanced Content Section */
    .content-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: var(--bg-light);
        position: relative;
        overflow: hidden;
    }

    .content-container {
        display: flex;
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
    }

    .image-content {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        overflow: hidden;
    }

    .content-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(1.05);
        transition: transform 1.2s cubic-bezier(0.2, 0.96, 0.34, 1);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(10,25,47,0.3) 0%, rgba(10,25,47,0.7) 100%);
        z-index: 1;
    }

    .text-content {
        flex: 1;
        padding: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2;
    }

    .text-wrapper {
        max-width: 600px;
    }

    .section-label {
        font-family: 'Roboto', sans-serif;
        font-size: 0.9rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }

    .section-title {
        font-family: 'Roboto', sans-serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 700;
        line-height: 1.2;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .title-part {
        display: block;
    }

    .content-text {
        margin-bottom: 40px;
    }

    .content-text p {
        font-family: 'Roboto', sans-serif;
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-dark);
        margin-bottom: 25px;
    }

    .content-cta {
        font-family: 'Roboto', sans-serif;
        display: inline-flex;
        align-items: center;
        color: var(--secondary-color);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.9rem;
        text-decoration: none;
        position: relative;
        padding: 10px 0;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-radius: 0;
    }

    .content-cta svg {
        margin-left: 10px;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .content-cta:hover svg {
        transform: translateX(5px);
    }

    .cta-hover-effect {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--secondary-color);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .content-cta:hover .cta-hover-effect {
        transform: scaleX(1);
    }

    @media (max-width: 1200px) {
        .content-container {
            flex-direction: column;
        }
        
        .image-wrapper {
            min-height: 60vh;
        }
        
        .text-content {
            padding: 60px 40px;
        }
    }

    @media (max-width: 992px) {
        .text-content {
            padding: 50px 30px;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 3rem);
        }
    }

    @media (max-width: 768px) {
        .content-container {
            flex-direction: column-reverse; 
        }
        
        .content-section {
            min-height: auto;
            padding: 0;
        }
        
        .image-wrapper {
            min-height: 50vh;
            height: 50vh;
        }
        
        .content-image {
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }
        
        .image-overlay {
            background: linear-gradient(to bottom, rgba(10,25,47,0.3) 0%, rgba(10,25,47,0.7) 100%);
        }
        
        .text-content {
            padding: 40px 20px;
        }
    }

    @media (max-width: 576px) {
        .text-content {
            padding: 30px 20px;
        }
        
        .section-label {
            font-size: 0.8rem;
        }
        
        .content-cta {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .image-wrapper {
            min-height: 55vh;
            height: 55vh;
        }
    }

    @media (max-width: 400px) {
        .section-title {
            font-size: clamp(1.4rem, 4vw, 2rem);
        }
        
        .content-text p {
            font-size: 0.95rem;
        }
    }


/* New Split Detailing Section - FASTER ANIMATIONS */
.split-detailing-section {
    background: black;
    overflow: hidden;
}

.split-container {
    display: flex;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); 
}

.split-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.split-container:nth-child(2) {
    transition-delay: 0.1s; 
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.split-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 112, 193, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease; 
    z-index: 0;
}

.split-container.animate-in .split-content::before {
    opacity: 1;
}

.content-wrapper {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.section-number {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #0170C1;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease; 
}

.split-container.animate-in .section-number {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s; 
}

.split-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #f8f8f8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.split-container.animate-in h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; 
}

.split-content .divider {
    width: 0;
    height: 2px;
    background: #0170C1;
    margin: 0 0 25px;
    transition: all 0.6s ease; 
    transition-delay: 0.4s; 
}

.split-container.animate-in .divider {
    width: 60px;
}

.split-content p {
    font-family: 'Roboto', sans-serif;
    color: #878787;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease; 
}

.split-container.animate-in p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s; 
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease; 
}

.split-container.animate-in .stats-grid {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s; 
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease; 
    transform: translateY(20px);
    opacity: 0;
}

.split-container.animate-in .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.split-container.animate-in .stat-item:nth-child(1) {
    transition-delay: 0.7s; /
}

.split-container.animate-in .stat-item:nth-child(2) {
    transition-delay: 0.8s; 
}

.stat-item:hover {
    border-color: #0170C1;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 112, 193, 0.2);
}

.stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 5px;
    transition: all 0.2s ease; 
}

.stat-item:hover .stat-number {
    color: #0170C1;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #878787;
    text-transform: uppercase;
    transition: all 0.2s ease; 
}

.stat-item:hover .stat-label {
    color: #cccccc;
}

.features-list {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.split-container.animate-in .features-list {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s; 
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.split-container.animate-in .feature-item {
    opacity: 1;
    transform: translateX(0);
}

.split-container.animate-in .feature-item:nth-child(1) { transition-delay: 0.7s; } /* Reduced delay */
.split-container.animate-in .feature-item:nth-child(2) { transition-delay: 0.8s; } /* Reduced delay */
.split-container.animate-in .feature-item:nth-child(3) { transition-delay: 0.9s; } /* Reduced delay */
.split-container.animate-in .feature-item:nth-child(4) { transition-delay: 1.0s; } /* Reduced delay */

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.2s ease; 
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(1, 112, 193, 0.4);
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    color: white;
    transition: all 0.2s ease;
}

.feature-item span {
    font-family: 'Roboto', sans-serif;
    color: #878787;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.feature-item:hover span {
    color: #ffffff;
}

.split-cta {
    font-family: 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background:  #0170C1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 0;
    font-size: 0.9rem;
    border: 1px solid #0170C1;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.split-container.animate-in .split-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s; 
}

.split-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0170C1;
    transition: all 0.4s ease; 
    z-index: -1;
}

.split-cta:hover {
    color: white;
    padding-right: 40px;
}

.split-cta:hover::before {
    left: 0;
}

.split-cta svg {
    margin-left: 10px;
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease; 
}

.split-cta:hover svg {
    transform: translateX(5px);
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(1, 112, 193, 0.2) 100%);
    opacity: 0;
    transition: all 0.6s ease; 
    z-index: 1;
}

.split-container.animate-in .split-image::before {
    opacity: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); 
    opacity: 0;
}

.split-container.animate-in .split-image img {
    transform: scale(1);
    opacity: 1;
}

.image-label {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease; 
}

.split-container.animate-in .image-label {
    opacity: 0.8;
    transform: translateY(0);
    transition-delay: 0.6s; 
}


.split-image:hover img {
    transform: scale(1.05);
}

.split-image:hover::before {
    opacity: 0.5;
}


.parallax-img {
    will-change: transform;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1200px) {
    .split-content {
        padding: 60px;
    }
    
    .split-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        min-height: auto;
    }
    .split-container.reverse {
        flex-direction: column !important;
    }
    
    .split-content, 
    .split-image {
        flex: none;
        width: 100%;
    }
    
    .split-content {
        padding: 60px 40px;
    }
    
    .split-image {
        height: 60vh;
    }
    
    .reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .split-image {
        height: 50vh !important;
    }
    
    .split-content {
        order: 1;
    }
    
    .split-image {
        order: 2;
    }

    
    
    .split-content h2 {
        font-size: 2rem;
    }
    
    .split-content p {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .image-label {
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .split-content {
        padding: 40px 20px;
    }
    
    .split-content h2 {
        font-size: 1.8rem;
    }
    
    .split-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .split-cta {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .split-content {
        padding: 30px 15px;
    }
    
    .split-content h2 {
        font-size: 1.6rem;
    }
    
    .section-number {
        font-size: 0.8rem;
    }
    
    .split-cta {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .image-label {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

/*Tesmional*/ 






/* Photo Gallery Section */
.modern-gallery {
    padding: 120px 0;
    background-color: #000000; 
    color:white; 
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #e6f1ff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #0070c1;
    border-radius: 3px;
}

.gallery-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.05);;
    border: 1px solid rgba(255, 255, 255, 0.05);;
}

.gallery-item.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.2s; }
.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.6s; }
.gallery-item:nth-child(4) { animation-delay: 0.8s; }
.gallery-item:nth-child(5) { animation-delay: 1.0s; }
.gallery-item:nth-child(6) { animation-delay: 1.2s; }

.item-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover .item-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.1) 0%, rgba(10, 25, 47, 0.8) 100%);
    transition: opacity 0.4s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 0.8;
}

.item-content {
    background: rgba(10, 25, 47, 0.7) !important;
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-content-inner {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-content h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.gallery-item:hover .item-content h3 {
    color: #0170C1;
}

.item-content p {
    font-family: 'Roboto', sans-serif;
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.item-actions {
    margin-top: auto;
    padding-top: 15px;
}

.view-btn {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #0070C1;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.view-btn span {
    position: relative;
    transition: transform 0.3s ease;
}

.view-btn svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.view-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0170C1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.view-btn:hover span {
    transform: translateX(5px);
}

.view-btn:hover svg {
    transform: translateX(5px);
}

.view-btn:hover::after {
    transform: translateX(0);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(1, 112, 193, 0.2);
    border: 1px solid rgba(1, 112, 193, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn svg {
    stroke: #0170C1;
    transition: stroke 0.3s ease;
}

.zoom-btn:hover {
    background-color: rgba(1, 112, 193, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(1, 112, 193, 0.3);
}

.zoom-btn:hover svg {
    stroke: white;
}

.item-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #0170C1 transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .item-corner {
    opacity: 1;
}

.gallery-footer {
    text-align: center;
    margin-top: 60px;
}

.load-more {
    font-family: 'Roboto', sans-serif;
    padding: 15px 40px;
    background: #0070C1;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(1, 112, 193, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(1, 112, 193, 0.3);
    background: #005a9e;
}

.load-more:hover::before {
    left: 100%;
}

.load-more svg {
    stroke: white;
    transition: transform 0.3s ease;
}

.load-more:hover svg {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .gallery-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 992px) {
    .modern-gallery {
        padding: 100px 0;
    }
    
    .gallery-title {
        font-size: 2.2rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .item-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .modern-gallery {
        padding: 80px 0;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }
    
    .gallery-header {
        margin-bottom: 50px;
    }
    
    .gallery-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .item-image {
        height: 220px;
    }
    
    .item-content {
        padding: 20px;
    }
    
    .item-content h3 {
        font-size: 1.3rem;
    }
    
    .load-more {
        padding: 14px 35px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .modern-gallery {
        padding: 60px 0;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .item-image {
        height: 200px;
    }
    
    .item-content h3 {
        font-size: 1.2rem;
    }
    
    .item-content p {
        font-size: 0.9rem;
    }
    
    .view-btn {
        font-size: 0.85rem;
    }
    
    .load-more {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .gallery-title {
        font-size: 1.6rem;
    }
    
    .item-image {
        height: 180px;
    }
    
    .item-content {
        padding: 15px;
    }
    
    .item-content h3 {
        font-size: 1.1rem;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
    }
}

/* Enhanced Appointment Section Styles */
.appointment-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 80px 20px;
    overflow: hidden;
    background-color: #0a192f;
}

.appointment-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.appointment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.appointment-section:hover .appointment-bg {
    transform: scale(1);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 112, 193, 0.85) 0%, rgba(10, 25, 47, 0.9) 100%);
    z-index: 2;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 3;
    opacity: 0.5;
}

.appointment-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tagline-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    flex: 1;
    max-width: 50px;
}

.section-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin: 0;
    color: rgba(230, 241, 255, 0.8);
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.2rem;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: white;
}

.section-title .highlight {
    color: #64ffda;
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(100, 255, 218, 0.3);
    z-index: -1;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(100, 255, 218, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: #0170C1;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(1, 112, 193, 0.3);
}

.contact-icon svg {
    stroke: #64ffda;
    width: 20px;
    height: 20px;
    transition: stroke 0.3s ease;
}

.contact-item:hover .contact-icon svg {
    stroke: white;
}

.contact-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
    color: rgba(230, 241, 255, 0.7);
    font-weight: 300;
}

.contact-value {
    font-size: 1.2rem;
    margin: 0;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #64ffda;
}

.appointment-cta {
    display: flex;
    justify-content: center; /* This will center the button */
    gap: 15px;
}

.cta-button {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.book-now {
    background: linear-gradient(135deg, #0170C1 0%, #015a9e 100%);
    color: white;
}

.book-now:hover {
    background: linear-gradient(135deg, #015a9e 0%, #0170C1 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 112, 193, 0.3);
}



.whatsapp {
    background: linear-gradient(135deg, #015a9e 0%, #0170C1 100%);
    color: white;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.whatsapp:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
    border-color: #64ffda;
}

.appointment-form-container {
    background-color: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.form-header p {
    font-size: 1rem;
    color: rgba(230, 241, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

/* Changed from .appointment-form to .contact-form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #64ffda;
    background-color: rgba(10, 25, 47, 0.8);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 15px;
    left: 20px;
    color: rgba(230, 241, 255, 0.7);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background-color: #0170C1;
    color: white;
    border-radius: 10px;
    padding: 0 10px;
}

.submit-button {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #0170C1 0%, #64ffda 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 112, 193, 0.3);
    background: linear-gradient(135deg, #64ffda 0%, #0170C1 100%);
}

.submit-button svg {
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: rotate(45deg);
}

.appointment-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0170C1 0%, #64ffda 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(1, 112, 193, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.appointment-notification.active {
    bottom: 30px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content svg {
    stroke: currentColor;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close svg {
    stroke: currentColor;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .appointment-content {
        grid-template-columns: 1fr;
        max-width: 800px;
        gap: 30px;
    }
    
    .appointment-form-container {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .appointment-section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .appointment-section {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .appointment-content {
        gap: 25px;
    }
    
    .appointment-form-container {
        padding: 30px;
        margin-top: 30px;
    }
    
    .form-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .appointment-cta {
        flex-direction: column;
        gap: 12px;
        justify-content: center; /* Added this line */
    }
    
    .cta-button {
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    
    .cta-button.whatsapp {
        min-width: 200px;
        padding: 14px 25px;
    }
    
    
}

@media (max-width: 768px) {
    .form-group select,
    .form-group input[type="date"] {
        font-size: 16px; 
        height: 44px;
        padding: 12px 15px;
    }
    
    .form-group select {
        background-position: right 12px center;
        padding-right: 35px;
    }
    
    .form-group input[type="date"] {
        background-position: right 12px center;
        padding-right: 35px;
    }
}

@media (max-width: 576px) {
    .appointment-section {
        padding: 50px 15px;
    }
    .cta-button.whatsapp {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-tagline {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .appointment-form-container {
        padding: 25px 20px;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 14px;
        font-size: 0.85rem;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-label {
        font-size: 0.8rem;
    }
    
    .contact-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .appointment-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 10px 16px; 
        font-size: 0.75rem; 
        max-width: 200px; 
    }
    
    .submit-button {
        padding: 12px;
        font-size: 0.8rem;
    }
}


.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0170C1 0%, #0192c1 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
  animation: slideInRight 0.5s ease-out;
  max-width: 400px;
  border-left: 5px solid #00c853;
}

.success-notification.active {
  display: block;
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}

.notification-icon {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.notification-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.notification-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.notification-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.notification-close:hover {
  transform: scale(1.1);
}

.notification-close svg {
  width: 16px;
  height: 16px;
  color: #0170C1;
}


@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.success-notification.hide {
  animation: slideOutRight 0.5s ease-in forwards;
}


@media (max-width: 768px) {
    .success-notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .notification-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
    }
    
    .notification-text h3 {
        font-size: 16px;
    }
    
    .notification-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .success-notification {
        padding: 15px;
    }
    
    .notification-close {
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
    }
    
    .notification-close svg {
        width: 14px;
        height: 14px;
    }
}


@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;
    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: rgb(0, 0, 0);
    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;
    }
}




@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;
    }
}

@media (max-width: 1024px) {
    .footer-main {
        padding: 0 30px 50px;
        gap: 30px;
    }
    
    .footer-bottom {
        padding: 20px 30px;
    }
}