/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 25%, #4a69bd 50%, #6a89cc 75%, #b8e0f9 100%);
    overflow: hidden;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 20s infinite linear;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation: float 15s infinite linear reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 20%;
    animation: float 25s infinite linear;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    animation: float 18s infinite linear reverse;
}

.shape-5 {
    width: 250px;
    height: 250px;
    bottom: 30%;
    right: 5%;
    animation: float 22s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #1e3799;
    background-color: white;
    padding: 5px;
}

.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #0c2461;
    font-weight: 900;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.8rem;
    color: #4a69bd;
    font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0c2461;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #1e3799;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3799;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-call {
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(30, 55, 153, 0.3);
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-call:hover {
    background: linear-gradient(135deg, #0c2461, #1e3799);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 55, 153, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

.highlight {
    color: #ffdd59;
    display: inline-block;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 221, 89, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    @media (min-width: 992px) {
        .hero-buttons {
            justify-content: flex-start;
        }
    }
}

.btn-primary {
    background: linear-gradient(135deg, #ffdd59, #ff9f1a);
    color: #0c2461;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 157, 26, 0.4);
    min-height: 50px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 157, 26, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid white;
    min-height: 50px;
}

.btn-secondary:hover {
    background: white;
    color: #0c2461;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
}

@media (min-width: 992px) {
    .seo-keywords {
        justify-content: flex-start;
    }
}

.seo-keywords span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Hero Image Slider - Mobile Optimized */
.hero-image {
    width: 100%;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background-color: #f8f9ff;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .image-slider {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .image-slider {
        height: 400px;
    }
}

@media (min-width: 992px) {
    .image-slider {
        height: 450px;
    }
}

.image-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9ff;
    opacity: 0;
    transition: opacity 0.8s ease;
    padding: 15px;
}

.image-slider img.active {
    opacity: 1;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

/* Location Section */
.location {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.98);
    position: relative;
}

@media (min-width: 768px) {
    .location {
        padding: 80px 20px;
    }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    color: #0c2461;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.3rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #4a69bd;
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

.location-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
    border-top: 4px solid #1e3799;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.location-card h3 {
    font-size: 1.3rem;
    color: #0c2461;
    margin-bottom: 12px;
}

.location-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-cta {
    background: linear-gradient(135deg, #0c2461, #1e3799);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.location-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffdd59, #ff9f1a);
    color: #0c2461;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    min-height: 45px;
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 157, 26, 0.4);
}

/* Features Section */
.features {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.97);
    position: relative;
    border-radius: 20px 20px 0 0;
    margin-top: -20px;
}

@media (min-width: 768px) {
    .features {
        padding: 80px 20px;
        margin-top: -30px;
        border-radius: 30px 30px 0 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #0c2461;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background: #f8f9ff;
    position: relative;
}

@media (min-width: 768px) {
    .pricing {
        padding: 80px 20px;
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 2px solid #1e3799;
    transform: none;
}

@media (min-width: 768px) {
    .pricing-card.popular {
        transform: scale(1.02);
    }
    
    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3799;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #0c2461;
    margin-bottom: 15px;
}

.location-tag {
    color: #4a69bd;
    font-size: 0.85rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.3rem;
    color: #1e3799;
    font-weight: 600;
}

.amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0c2461;
    margin: 0 5px;
}

.period {
    color: #666;
    font-size: 0.9rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.pricing-features li {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: #1e3799;
    font-size: 0.9rem;
}

.btn-pricing {
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    padding: 14px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    min-height: 48px;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #0c2461, #1e3799);
    transform: translateY(-3px);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-note p {
    font-size: 1rem;
    color: #0c2461;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .pricing-note p {
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: white;
    position: relative;
}

@media (min-width: 768px) {
    .contact {
        padding: 80px 20px;
    }
}

.contact-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .contact-simple {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

.contact-card {
    background: #f8f9ff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2ff;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #0c2461;
    margin-bottom: 10px;
}

.contact-card > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e3799, #4a69bd);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 15px;
    min-height: 45px;
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0c2461, #1e3799);
    transform: translateY(-3px);
}

.contact-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

/* Service Areas */
.service-areas {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .service-areas {
        padding: 40px;
    }
}

.service-areas h3 {
    font-size: 1.5rem;
    color: #0c2461;
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .service-areas h3 {
        font-size: 1.8rem;
    }
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

.area {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.area h4 {
    color: #1e3799;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.area p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.direct-call-cta {
    background: linear-gradient(135deg, #0c2461, #1e3799);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .direct-call-cta {
        padding: 40px;
    }
}

.direct-call-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .direct-call-cta h3 {
        font-size: 2rem;
    }
}

.direct-call-cta > p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .direct-call-cta > p {
        font-size: 1.1rem;
    }
}

.direct-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffdd59, #ff9f1a);
    color: #0c2461;
    padding: 16px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 157, 26, 0.4);
    min-height: 55px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .direct-call-btn {
        font-size: 1.2rem;
        padding: 18px 35px;
    }
}

.direct-call-btn:hover {
    background: linear-gradient(135deg, #ff9f1a, #ff7a00);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 157, 26, 0.6);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #ffdd59;
    font-style: italic;
}

/* Footer */
footer {
    background: #0c2461;
    color: white;
    padding: 50px 20px 25px;
}

@media (min-width: 768px) {
    footer {
        padding: 70px 20px 30px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
    }
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid white;
    background-color: white;
    padding: 5px;
    flex-shrink: 0;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.footer-logo p {
    opacity: 0.9;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-address {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-contact h4,
.footer-seo h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffdd59;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #ffdd59;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icons a:hover {
    background: #ffdd59;
    color: #0c2461;
    transform: translateY(-3px);
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    line-height: 1.3;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.footer-bottom p:first-child {
    margin-bottom: 10px;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffdd59, #ff9f1a);
    color: #0c2461;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(255, 157, 26, 0.5);
    z-index: 999;
    transition: all 0.3s;
    overflow: hidden;
}

.floating-call-btn:hover {
    width: 180px;
    border-radius: 30px;
    justify-content: flex-start;
    padding-left: 20px;
}

.floating-call-btn span {
    display: none;
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-call-btn:hover span {
    display: inline;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .call-button {
        display: none;
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Close button for mobile menu */
    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #0c2461;
        cursor: pointer;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .pricing-card:hover,
    .contact-card:hover,
    .location-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-pricing:hover,
    .contact-btn:hover,
    .direct-call-btn:hover,
    .btn-location:hover,
    .cta-call:hover {
        transform: none;
    }
    
    .floating-call-btn:hover {
        width: 55px;
        padding-left: 0;
    }
    
    .floating-call-btn:hover span {
        display: none;
    }
}

/* Print Styles */
@media print {
    .animated-bg,
    .floating-call-btn,
    .menu-toggle {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        padding: 50px 0 !important;
        min-height: auto !important;
    }
    
    .hero-title {
        color: black !important;
    }
    
    .hero-subtitle {
        color: #333 !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
}
