@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*/
.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 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transform: scale(1.1); 
    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%
    ); 
    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; 
    margin-bottom: 20px;
    letter-spacing: 2px; 
    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);
    }
}


@media (max-width: 1200px) {
    .contact-hero-content h1 {
        font-size: 48px; 
    }
}

@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 42px; 
        letter-spacing: 1.5px;
    }
    
    .contact-hero-content p {
        font-size: 17px; 
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 70vh;
        margin-top: 70px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .contact-hero-content p {
        font-size: 16px; 
        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; 
        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; 
    }
}

.hero-image {
    max-width: 100%;
}

@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;
    }
}

/* Button Styles (matching your brand) */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0170C1;
    color: white;
    border: 2px solid #0170C1;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    background: #015da1;
    border-color: #015da1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-image-container {
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-container {
        padding: 0 20px;
    }
}

.our-story-section {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
}

.our-story-section .divider {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0170C1;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0170C1 0%, #00C6FF 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover .story-img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    color: rgb(0, 0, 0);
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(1, 112, 193, 0.3);
    animation: float 4s ease-in-out infinite;
}

.experience-badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.story-content {
    padding-left: 30px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #878787;
    margin-bottom: 25px;
}

.market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.market-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1); 
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: white; 
}

.market-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.market-item i {
    color: #0170C1;
    margin-right: 10px;
    font-size: 0.9rem;
}

.market-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 1200px) {
    .our-story-section .container {
        padding: 0 30px;
    }
    
    .story-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .our-story-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .our-story-section .container {
        padding: 0 20px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-content {
        padding-left: 0;
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        right: 15px;
        bottom: -10px;
        padding: 12px 18px;
    }
    
    .experience-badge span {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .our-story-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .story-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .market-list {
        flex-direction: column;
        align-items: center;
    }
    
    .market-item {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Our Unique Approach Section Styles */
.unique-approach-section {
    padding: 100px 0;
    background-color: rgb(0, 0, 0);
    position: relative;
}
.unique-approach-section .divider {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0170C1 0%, #00C6FF 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.approach-card {
    background: rgba(0,0,0,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid white;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(1, 112, 193, 0.2);
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0170C1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    color: white;
    transform: scale(1.1);
}

.approach-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.approach-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #878787;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .unique-approach-section .container {
        padding: 0 30px;
    }
    
    .approach-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .unique-approach-section {
        padding: 80px 0;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unique-approach-section .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .approach-card {
        padding: 25px 20px;
    }
    
    .approach-title {
        font-size: 1.3rem;
    }
    
    .approach-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .unique-approach-section {
        padding: 60px 0;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .approach-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .approach-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .approach-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
}
.why-choose-us .divider {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0170C1 0%, #00C6FF 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(0,0,0,0.1);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid white;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(1, 112, 193, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0170C1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0170C1 0%, #00C6FF 100%);
    color: white;
    transform: scale(1.1);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}
.benefit-note {
    font-size: 0.8 rem;
    color: white;
    margin: -15px 0 15px 0;
    
}

.benefit-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #878787;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .why-choose-us .container {
        padding: 0 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-us .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .benefit-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@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;
    }
}