/* ============================================
   PRO TEMPLATE STYLES
   Responsive Design with Modern UI
   ============================================ */

/* Root Variables */
:root {
    --primary-blue: #44C2FF;
    --primary-blue-dark: hsl(195, 100%, 32%);
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --green-whatsapp: #25D366;
    --green-whatsapp-dark: #128C7E;
    --blue-telegram: #0088CC;
    --blue-telegram-dark: #006699;
    --green-service: #4CAF50;
    --blue-service: #2196F3;
    --peach-bg: #FFE5D9;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

video {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
    transition: var(--transition);
    position: relative;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(calc(-165% - 200px));
}

.logo-img {
    height: auto;
    width: auto;
    
    max-width: 200px;
    margin-left: 65px;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
}

.site-name-nav {
    color: var(--text-dark);
}

.navbar-nav {
    gap: 4rem;
    justify-content: center;
    align-items: center;
    margin-left: 290px;
    width: 100%;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 800;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10px 0 30px;
    background: #ffffffbe;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: -100px;
}

/* Ocean Wave Animation */
.ocean {
    height: 20%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #e9eceeb4;
    z-index: 0;
    
}

.wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 198'%3E%3Cpath fill='%23EFF2F2' d='M0,198L53.3,181.3C106.7,165,213,132,320,132C427,132,533,165,640,181.3C746.7,198,853,198,960,181.3C1066.7,165,1173,132,1280,132C1386.7,132,1493,165,1546.7,181.3L1600,198L1600,198L1546.7,198C1493,198,1386.7,198,1280,198C1173,198,1066.7,198,960,198C853,198,746.7,198,640,198C533,198,427,198,320,198C213,198,106.7,198,53.3,198L0,198Z'/%3E%3C/svg%3E") repeat-x;
    position: absolute;
    top: -198px;
    width: 6400px;
    height: 198px;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
}

.wave:nth-of-type(2) {
    top: -175px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 198'%3E%3Cpath fill='%23F5F6F7' d='M0,198L53.3,181.3C106.7,165,213,132,320,132C427,132,533,165,640,181.3C746.7,198,853,198,960,181.3C1066.7,165,1173,132,1280,132C1386.7,132,1493,165,1546.7,181.3L1600,198L1600,198L1546.7,198C1493,198,1386.7,198,1280,198C1173,198,1066.7,198,960,198C853,198,746.7,198,640,198C533,198,427,198,320,198C213,198,106.7,198,53.3,198L0,198Z'/%3E%3C/svg%3E") repeat-x;
    animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
    opacity: 0.6;
}

@keyframes wave {
    0% {
        margin-left: 0;
    }
    100% {
        margin-left: -1600px;
    }
}

@keyframes swell {
    0%, 100% {
        transform: translate3d(0, -25px, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
    }
}

.hero-content-left {
    padding: 3rem 3rem;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-content-right {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-shadow: 0 8px 6px rgba(37, 35, 35, 0.15), 0 9px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin-left: 100px;
    margin-top: 30px;
}

.hero-title .text-danger {
    color: #F34336;
}

.hero-title .eu-flag {
    position: relative;
    display: inline-block;
    padding-left: 0.8em;
    margin-left: 0.2em;
    vertical-align: baseline;
}

.hero-title .eu-flag::before {
    content: '🇪🇺';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1em;
    line-height: 0.4em;
    display: inline-block;
    height: 1em;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    text-shadow: 0 8px 6px rgba(37, 35, 35, 0.15), 0 9px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin-left: 100px;
}

.hero-subtitle .text-blue-accent {
    color: #44C2FF;
}

.hero-subtitle .text-primary {
    color: var(--text-dark);
}

.hero-cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background-color: var(--primary-blue);
    border: 8px solid #c0dfff;
    color: var(--text-light);
    gap: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    margin-left: 100px;
    overflow: hidden;
}

.hero-btn-text {
    font-family: 'Avenir', 'Avenir Next', 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.hero-btn-svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.hero-btn-svg svg {
    width: 24px; /* Adjust this value to change arrow width */
    height: 16px; /* Adjust this value to change arrow height */
    color: var(--text-light);
}

.hero-cta-btn:hover {
    border: 4px solid #b1d8ff;
    background-color: #1b7aff;
}

.hero-cta-btn:active {
    border: 3px solid #c0dfff;
}

.hero-cta-btn:hover .hero-btn-svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

/* Bubbles/Water Animation */
.hero-cta-btn::before {
    content: '';
    pointer-events: none;
    opacity: 0.6;
    background:
        radial-gradient(circle at 20% 35%, transparent 0, transparent 2px, var(--text-light) 3px, var(--text-light) 4px, transparent 4px),
        radial-gradient(circle at 75% 44%, transparent 0, transparent 2px, var(--text-light) 3px, var(--text-light) 4px, transparent 4px),
        radial-gradient(circle at 46% 52%, transparent 0, transparent 4px, var(--text-light) 5px, var(--text-light) 6px, transparent 6px);
    width: 100%;
    height: 300%;
    top: 0;
    left: 0;
    position: absolute;
    animation: bubbles 5s linear infinite both;
    z-index: 0;
}

@keyframes bubbles {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(0, -66.666%);
    }
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(0.75, 1.25, 1);
    }
    40% {
        transform: scale3d(1.25, 0.75, 1);
    }
    50% {
        transform: scale3d(0.85, 1.15, 1);
    }
    65% {
        transform: scale3d(1.05, 0.95, 1);
    }
    75% {
        transform: scale3d(0.95, 1.05, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.hero-content-right {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 65px;
    margin-right: -45px;
    margin-left: 60px;
    margin-bottom: 35px;

}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    /* Prevent fullscreen */
    object-fit: contain;
}

/* Hide fullscreen button on video controls (if supported) */
.hero-video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.hero-wave-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(240, 240, 240, 0.6) 0%, transparent 60%);
    z-index: 0;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-right: -100px;
}

/* Section Padding */
.section-padding {
    padding: var(--section-padding);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--bg-white);
}

.section-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -40px;
    
}

.section-subtitle-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background-color: #F5F6F7;
    border-radius: 20px;
    padding: 20px;
}

.feature-icon .custom-icon {
    width: 60px;
    height: 60px;
    animation: spin-left-to-right 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes spin-left-to-right {
    0% {
        transform: rotate(0deg) translateX(0);
    }
    25% {
        transform: rotate(90deg) translateX(5px);
    }
    50% {
        transform: rotate(180deg) translateX(0);
    }
    75% {
        transform: rotate(270deg) translateX(-5px);
    }
    100% {
        transform: rotate(360deg) translateX(0);
    }
}

.feature-card:hover .feature-icon .custom-icon {
    animation: spin-left-to-right 1.5s ease-in-out infinite;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    position: relative;
}

/* Service Package Cards - Classic Template Design */
.service-package-card {
    /* CARD SIZE CONTROL: Adjust padding to make cards bigger/smaller */
    padding: 2rem 1.5rem; /* Reduced from 3rem 2rem - increase for bigger cards */
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    /* CARD WIDTH CONTROL: Uncomment and adjust max-width to limit card width */
    /* max-width: 400px; */
}

.service-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(1.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-package-card > * {
    position: relative;
    z-index: 1;
}

.service-package-green {
    background: linear-gradient(135deg, var(--green-service) 0%, #28a745 100%);
    color: white;
}

.service-package-blue {
    background: linear-gradient(135deg, var(--blue-service) 0%, #0066CC 100%);
    color: white;
}

.service-package-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.service-package-card:hover::before {
    opacity: 1;
}

.service-package-header {
    margin-bottom: 2rem;
}

.service-package-icon {
    /* ICON CONTAINER SIZE: Adjust width/height to make icon box bigger/smaller */
    width: 60px; /* Reduced from 80px - increase for bigger icon box */
    height: 60px; /* Reduced from 80px - increase for bigger icon box */
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Reduced from 2.5rem - increase for bigger icon font */
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-icon-img {
    /* ICON IMAGE SIZE: Adjust width/height to make icon image bigger/smaller */
    width: 40px; /* Reduced from 50px - increase for bigger icon */
    height: 40px; /* Reduced from 50px - increase for bigger icon */
    object-fit: contain;
}

.service-package-card:hover .service-package-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.35);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.service-package-header h3 {
    /* TITLE SIZE: Adjust font-size to make title bigger/smaller */
    font-size: 1.5rem; /* Reduced from 1.8rem - increase for bigger title */
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-package-divider {
    height: 3px;
    background: rgba(255,255,255,0.6);
    width: 120px;
    margin: 0 auto;
    border-radius: 2px;
    transition: var(--transition);
}

.service-package-card:hover .service-package-divider {
    width: 150px;
    background: rgba(255,255,255,0.9);
}

.service-package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-package-features li {
    /* FEATURE TEXT SIZE: Adjust padding and font-size to make features bigger/smaller */
    padding: 0.75rem 0; /* Reduced from 1rem - increase for more spacing */
    font-size: 0.95rem; /* Reduced from 1.1rem - increase for bigger text */
    display: flex;
    align-items: center;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-package-features li:last-child {
    border-bottom: none;
}

.service-package-features li:hover {
    padding-left: 1rem;
    color: rgba(255,255,255,0.95);
}

.service-package-features li i {
    /* CHECK ICON SIZE: Adjust font-size, width, height to make check icons bigger/smaller */
    margin-right: 1rem; /* Reduced from 1.2rem */
    font-size: 1.1rem; /* Reduced from 1.3rem - increase for bigger check icon */
    width: 25px; /* Reduced from 30px - increase for bigger check circle */
    height: 25px; /* Reduced from 30px - increase for bigger check circle */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-package-features li:hover i {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
}

.service-package-btn {
    /* BUTTON SIZE: Adjust padding and font-size to make button bigger/smaller */
    padding: 0.85rem 1.75rem; /* Reduced from 1rem 2rem - increase for bigger button */
    font-weight: 700;
    font-size: 1rem; /* Reduced from 1.1rem - increase for bigger text */
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-decoration: none;
    display: inline-block;
}

.service-package-btn-green {
    background: var(--text-dark);
    color: white;
    margin-bottom: -2px;
    margin-top: -10px;
}

.service-package-btn-green:hover {
    background: #1a1a1a;
    transform: scale(1.05);
    color: white;
}

.service-package-btn-blue {
    background: white;
    color: var(--text-dark);
    margin-bottom: -2px;
    margin-top: -10px;
}

.service-package-btn-blue:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    color: var(--text-dark);
}

.services-zigzag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        45deg,
        var(--text-dark),
        var(--text-dark) 10px,
        transparent 10px,
        transparent 20px
    );
}

/* Clients Issues Section */
.clients-issues-section {
    background-color: var(--bg-white);
    margin-top: -50px;
    margin-bottom: -60px;
}

.clients-issues-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-label {
    display: inline-block;
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.clients-issues-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Contact Buttons Section */
.contact-buttons-section {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 30px 0;
}

.contact-buttons-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-buttons-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.contact-buttons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
    min-width: 250px;
    justify-content: center;
}

.contact-button-whatsapp {
    background-color: var(--green-whatsapp);
    border: 2px solid var(--green-whatsapp-dark);
    width: 400px;
}

.contact-button-whatsapp:hover {
    background-color: var(--green-whatsapp-dark);
    color: var(--text-light);
}

.contact-button-telegram {
    background-color: var(--blue-telegram);
    border: 2px solid var(--blue-telegram-dark);
    width: 400px;
}

.contact-button-telegram:hover {
    background-color: var(--blue-telegram-dark);
    color: var(--text-light);
}

.contact-buttons-divider {
    width: 2px;
    height: 60px;
    background-color: var(--text-light);
}

.contact-info-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-item {
    color: var(--text-light);
    font-size: 1.1rem;
    text-decoration: underline;
    margin: 0;
}

/* Swing Animation */
@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.swing-animation:hover {
    animation: swing 0.5s ease-in-out;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
    margin-top: -10px;
    margin-bottom: -40px;
    overflow:hidden ;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow:hidden ;
}

.testimonial-card-highlight {
    background-color: var(--peach-bg);
    overflow:hidden ;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-blue);
    overflow:hidden ;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    overflow:hidden ;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
    overflow:hidden ;
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--primary-blue);
    font-weight: 800;
    line-height: 1;
    font-family: serif;
    overflow:hidden ;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
    
    margin-bottom: -70px;
}

.faq-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-number {
    /* Light blue rounded rectangle badge */
    background-color: #44C2FF;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    border-radius: 12px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    flex-shrink: 0;
}

.faq-content {
    /* White rounded rectangle block */
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    flex: 1;
}

.faq-chevron {
    /* Light blue caret icon */
    color: #44C2FF;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    font-size: 1rem;
}

/* Chevron points down when collapsed, up when expanded */
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Why We Better Section */
.why-we-better-section {
    background-color: var(--bg-white);
    margin-top: -70px;
    margin-bottom: -60px;
}

.why-we-better-content {
    padding-right: 2rem;
}

.why-we-better-feature {
    margin-bottom: 2rem;
}

.why-we-better-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-we-better-feature p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.why-we-better-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-we-better-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.why-we-better-gif {
    border-radius: 50% !important;
    width: 500px !important;
    height: 500px !important;
    max-width: 500px !important;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1 !important;
}

@media (max-width: 768px) {
    .why-we-better-gif {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
    }
}

.why-we-better-video {
    border-radius: 50%;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Partners Section */
.partners-section {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--primary-blue) 0%, var(--primary-blue) 100%);
    padding: 30px 0;
    border: none !important; /* Remove any borders */
    outline: none !important; /* Remove any outlines */
    overflow: hidden; /* Hide overflow to create exit effect */
    
    /* Continuous circular spin speed - Easy to modify */
    /* This controls how fast the circle spins - lower = faster spin, higher = slower spin */
    /* The animation is truly infinite with no end point - it's a continuous spinning circle */
    --partners-scroll-speed: 5s;  /* Spin speed - lower = faster rotation, higher = slower rotation */
}

.partners-content {
    text-align: center;
    border: none !important;
    outline: none !important;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.partners-divider {
    width: 300px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 0 auto 3rem;
    position: relative;
}

.partners-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--text-dark);
    border-radius: 50%;
}

.partners-logos {
    overflow: hidden !important; /* Hide overflow so logos exit screen */
    margin-top: 2rem;
    position: relative;
    width: 100%;
    white-space: nowrap;
    border: none !important;
    outline: none !important;
}

.partners-section .container {
    overflow: hidden !important; /* Hide overflow so logos exit screen */
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    border: none !important; /* Remove any borders */
    outline: none !important; /* Remove any outlines */
}

.partners-content {
    overflow: hidden; /* Hide overflow so logos exit screen */
    border: none !important;
    outline: none !important;
}

.partners-logos-row-1 {
    margin-bottom: 1.5rem;
}

.partners-logos-row-2 {
    margin-top: 1.5rem;
}

.partners-logos-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: scroll-left var(--partners-scroll-speed) linear infinite;
}

.partners-logos-row-2 .partners-logos-track {
    animation: scroll-right var(--partners-scroll-speed) linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Continuous circular spin animation - no end point, just continuous rotation */
/* Logos are arranged in a circle that spins continuously */
/* The track contains duplicated logos: [Logo1...LogoN, Logo1...LogoN] */
/* Moving -50% creates seamless infinite spin because duplicate set matches original position */
@keyframes scroll-left-mobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Move exactly half - creates seamless continuous spin */
    }
}

@keyframes scroll-right-mobile {
    from {
        transform: translateX(-50%); /* Start from duplicate set position */
    }
    to {
        transform: translateX(0); /* Move back - creates seamless continuous spin */
    }
}

/* Mobile: Ensure seamless continuous scrolling without restart */
@media (max-width: 768px) {
    .partners-logos-track {
        will-change: transform; /* Optimize for smooth animation */
        backface-visibility: hidden; /* Prevent flickering */
        -webkit-backface-visibility: hidden;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    /* Ensure animation is truly seamless - no visible restart */
    .partners-logos-row-1 .partners-logos-track {
        animation: scroll-left var(--partners-scroll-speed) linear infinite;
    }
    
    .partners-logos-row-2 .partners-logos-track {
        animation: scroll-right var(--partners-scroll-speed) linear infinite;
    }
}

.partner-logo-item {
    flex: 0 0 auto;
    transition: var(--transition);
}

.partner-logo-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.partner-logo-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important; /* Remove any borders */
    outline: none !important; /* Remove any outlines */
}

.partner-logo-img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo-svg {
    width: 180px;
    height: 45px;
}

.meta-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-icon {
    font-size: 3.5rem;
    color: #0866FF;
}

.meta-text {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0866FF;
    letter-spacing: 2px;
}

.oberlo-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: 2px;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--bg-white);
    margin-bottom: -100px;
}

.contact-form-section .mb-5 {
    margin-bottom: 1.5rem !important;
    
}

.contact-info-box {
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 0.25rem;
    margin-bottom: 10px;
}

.contact-info-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.contact-form {
    padding: 2rem;
}

.form-control {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 217, 255, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-dark);
    opacity: 0.6;
}

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer-section {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: auto;
    width: auto;
    max-height: 60px;
    max-width: 200px;
    margin-bottom: 1rem;
    object-fit: contain;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    display: block;
}

.footer-tagline {
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-top: -10px;
}

.footer-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    margin-top: 1rem;
   
}

.footer-contact p {
    color: rgb(255, 255, 255);
    margin-bottom: 0.3rem;
    margin-top: 35px;
}

.footer-contact p:last-child {
    margin-bottom: 0;
    margin-top: -8px;
}

.footer-about {
    color: rgb(255, 255, 255);
    line-height: 1.8;
    margin-top: -12px;
}

.footer-copyright {
    background-color: var(--primary-blue);
    padding: 0.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-copyright p {
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .contact-buttons-title {
        font-size: 2rem;
    }
    
    .partners-logos {
        gap: 3.5rem;
    }
    
    .hero-content-left,
    .hero-content-right {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    /* Prevent Horizontal Scrolling on Mobile */
    html, body {
        overflow-x: hidden !important;
        overflow-y: auto !important; /* Allow vertical scrolling */
        width: 100%;
        max-width: 100vw;
        position: relative;
        scroll-behavior: smooth; /* Smooth scrolling */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important; /* Allow vertical scrolling */
        height: auto !important; /* Don't restrict height */
    }
    
    /* Disable any scroll snapping and ensure smooth continuous scrolling */
    html {
        scroll-snap-type: none !important;
        -webkit-scroll-snap-type: none !important;
        touch-action: pan-y !important; /* Allow vertical panning (scrolling) */
    }
    
    body {
        touch-action: pan-y !important; /* Allow vertical panning (scrolling) */
    }
    
    section {
        scroll-snap-align: none !important;
        -webkit-scroll-snap-align: none !important;
        height: auto !important; /* Don't force sections to full height */
        min-height: auto !important;
        touch-action: pan-y !important; /* Allow vertical scrolling through sections */
    }
    
    /* Ensure all containers allow smooth scrolling */
    .container, .container-fluid, .row {
        touch-action: pan-y !important;
    }
    
    * {
        max-width: 100vw;
    }
    
    .container, .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 10px !important; 
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Mobile Navbar - Logo Top Left */
    .navbar {
        position: relative;
        z-index: 1030; /* Ensure navbar is above content */
    }
    
    .navbar .container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        padding: 0.5rem 1rem;
        max-width: 100%;
        overflow: visible !important; /* Ensure button is not clipped */
        margin-top: -25px;
        margin-bottom: -25px;
    }
    
    .navbar-brand {
        position: relative;
        left: 0;
        transform: none;
        margin: 0;
        padding-left: 1rem;
    }
    
    .logo-img {
        margin-left: -10px !important;
        
        
    }
    
    .navbar-nav {
        margin-left: 0;
        width: auto;
        justify-content: flex-start;
    }
    
    .navbar-toggler {
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1051 !important; /* Ensure button is above everything */
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 4px;
        padding: 0.5rem !important;
        width: 44px !important; /* Ensure touch target is large enough */
        height: 44px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto !important; /* Ensure button is clickable */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler:hover {
        outline: none !important;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1) !important;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
        /* Black and bold hamburger icon - stroke-width increased to 3.5 for boldness */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        /* Alternative: You can also use filter to make it bolder if needed */
        filter: contrast(1.2);
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1040;
        padding: 1rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        text-align: left;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        /* MOBILE TOP SPACING: Adjust padding-top to control space at the top (reduce for less space) */
        padding: 20px 0 40px; /* Reduced from 80px - decrease padding-top for less space, increase for more */
        min-height: auto;
        margin-left: 0;
    }
    
    /* Ocean Wave Animation Mobile - Control the space/height of the ocean */
    .ocean {
        /* OCEAN HEIGHT CONTROL: Adjust this value to reduce/increase ocean space on mobile */
        /* Lower value = less ocean space, Higher value = more ocean space */
        --ocean-height-mobile: 100%;  /* Default: 8% (reduced from 20%) - adjust as needed */
        
        height: var(--ocean-height-mobile) !important; /* Use variable for easy control */
        /* You can also use fixed values like: height: 60px !important; or height: 5% !important; */
        margin-bottom: 50px;
    }
    
    /* Optionally reduce wave height on mobile for even less space */
    .wave {
        height: 120px !important; /* Reduced from 198px - adjust as needed */
        top: -120px !important; /* Adjusted to match new height */
    }
    
    .wave:nth-of-type(2) {
        top: -100px !important; /* Adjusted for second wave */
    }
    
    /* MOBILE ORDER CONTROL: Switch video and text order on mobile */
    /* Ensure the row uses flexbox for order to work */
    .hero-section .row {
        display: flex;
        flex-direction: column;
    }
    
    /* Video appears first (order: 1), Text appears second (order: 2) */
    .hero-content-right {
        order: 1; /* Video appears first on mobile - change to 2 to put it second */
        text-align: center;
        padding: 1rem;
        margin-top: 0; /* Removed top margin since video is first */
        margin-bottom: 1rem; /* SPACING CONTROL: Adjust margin-bottom to control space below video */
    }
    
    .hero-content-left {
        order: 2; /* Text appears second on mobile - change to 1 to put it first */
        text-align: center;
        margin-left: 0;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-left: 0;
        text-align: center;
        margin-top: -20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: 0;
        text-align: center;
    }
    
    .hero-cta-btn {
        margin-left: 0;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
    }
    
    /* Video Container Mobile - Centered and Responsive - BIGGER SIZE */
    .video-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        /* OVERRIDE DESKTOP MARGINS: Remove all desktop margins on mobile */
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
        padding: 0.5rem; /* Small padding for spacing */
    }
    
    .hero-video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        /* Make video bigger - ensure it fills container */
        object-fit: contain;
        display: block;
    }
    
    /* Reduce padding around video container to make video appear bigger */
    .hero-content-right {
        padding: 0.5rem !important; /* Reduced padding to make video bigger */
    }
    
    .section-padding {
        padding: 60px 0; /* Proper padding between sections - no overlap */
        padding-bottom: 0 !important;
    }
    
    /* Ensure sections don't overlap and have proper spacing */
    section {
        position: relative;
        overflow: visible; /* Allow content to be fully visible */
        margin-top: 0 !important; /* Remove any negative top margins */
        margin-bottom: 0 !important; /* Remove any negative bottom margins */
    }
    
    /* Ensure all sections are visible on mobile */
    section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Prevent section overlap - Remove all negative margins on mobile */
    .clients-issues-section {
        margin-top: 0 !important; /* Remove negative margin to prevent overlap */
        margin-bottom: 0 !important; /* Remove negative margin to prevent overlap */
    }
    
    .why-we-better-section {
        margin-top: 0 !important; /* Remove negative margin to prevent overlap */
        margin-bottom: 0 !important; /* Remove negative margin to prevent overlap */
    }
    
    .contact-form-section {
        margin-bottom: 0 !important; /* Remove negative margin to prevent overlap */
    }
    
    /* Clients Issues Section Mobile - Text Control */
    .clients-issues-section {
        /* Adjustable spacing variables - Easy to modify */
        --clients-issues-top-space: 2rem;           /* Space at top of section - adjust as needed */
        --clients-issues-bottom-space: 2rem;        /* Space at bottom of section - adjust as needed */
        --clients-issues-label-top-space: 0;        /* Space above "CLIENTS ISSUES" label - adjust as needed */
        --clients-issues-label-bottom-space: 0.75rem; /* Space below label - adjust as needed */
        --clients-issues-title-bottom-space: 1rem;  /* Space below main title - adjust as needed */
        --clients-issues-paragraph-spacing: 1rem;   /* Space between paragraphs - adjust as needed */
        
        padding-top: var(--clients-issues-top-space) !important;
        padding-bottom: var(--clients-issues-bottom-space) !important;
    }
    
    .clients-issues-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    /* Control "CLIENTS ISSUES" label */
    .clients-issues-content .section-label {
        margin-top: var(--clients-issues-label-top-space) !important;
        margin-bottom: var(--clients-issues-label-bottom-space) !important;
        font-size: 0.9rem !important; /* Adjustable label size */
    }
    
    /* Control main title "ARE STRUGGLING WITH..." */
    .clients-issues-content .section-title {
        font-size: 1.5rem !important; /* Adjustable title size */
        line-height: 1.4 !important; /* Adjustable line height */
        margin-bottom: var(--clients-issues-title-bottom-space) !important;
        margin-top: 0 !important;
    }
    
    /* Control paragraph text */
    .clients-issues-content p {
        font-size: 1rem !important; /* Adjustable paragraph size */
        line-height: 1.7 !important; /* Adjustable line height */
        margin-bottom: var(--clients-issues-paragraph-spacing) !important;
    }
    
    .clients-issues-content p:last-child {
        margin-bottom: 0 !important;
    }
    
    .section-main-title {
        font-size: 1.5rem !important; /* Large, bold title for mobile */
        font-weight: 800 !important; /* Bold */
        color: var(--primary-blue) !important; /* Light blue color */
        text-transform: uppercase !important; /* Uppercase */
        text-align: center !important; /* Centered */
        letter-spacing: 1px !important; /* Slight letter spacing */
        margin-bottom: 1rem !important; /* Space below title */
        margin-top: 0 !important; /* Remove negative margin on mobile */
        display: block !important; /* Ensure it's visible */
        visibility: visible !important; /* Ensure it's visible */
        opacity: 1 !important; /* Ensure it's visible */
        width: 100% !important; /* Full width */
        position: relative !important; /* Ensure proper positioning */
        z-index: 1 !important; /* Ensure it's above background elements */
    }
    
    .section-subtitle-text {
        font-size: 0.85rem !important; /* Smaller subtitle for mobile */
        font-weight: 400 !important; /* Regular weight (not bold) */
        color: var(--text-dark) !important; /* Black color */
        text-transform: uppercase !important; /* Uppercase */
        text-align: center !important; /* Centered */
        white-space: normal !important; /* Allow text to wrap on mobile */
        max-width: 100% !important; /* Ensure it fits within container */
        padding: 0 1rem !important; /* Add horizontal padding for better readability */
        line-height: 1.6 !important; /* Better line spacing for wrapped text */
        word-wrap: break-word !important; /* Break long words if needed */
        margin: 0.5rem auto 1.5rem !important; /* Center the text with spacing below title */
        display: block !important; /* Ensure it's visible */
        visibility: visible !important; /* Ensure it's visible */
        opacity: 1 !important; /* Ensure it's visible */
        width: 100% !important; /* Full width */
    }
    
    /* Services Section Mobile - Spacing Control */
    .services-section {
        /* Adjustable spacing variables - Easy to modify */
        --services-top-space: 2rem;              /* Space at top of section (red rectangle area between Why Choose Us and Services) - adjust as needed */
        --services-bottom-space: 1rem;            /* Space at bottom of section - adjust as needed */
        --services-title-top-space: 0;            /* Space above "CHECK OUR SERVICES BELOW" title - adjust as needed */
        --services-title-bottom-space: -3rem;    /* Space below title - adjust as needed */
        --services-subtitle-bottom-space: 2rem;  /* Space below subtitle (before cards) - adjust as needed */
        
        padding-top: var(--services-top-space) !important; /* Control top spacing (red rectangle area) */
        padding-bottom: var(--services-bottom-space) !important; /* Control bottom spacing */
    }
    
    /* Control spacing between Why Choose Us and Services sections (red rectangle area) */
    /* Why Choose Us Section Mobile - Spacing Control */
    .why-choose-us-section {
        /* Adjustable spacing variables - Easy to modify */
        --why-choose-top-space: -4rem;             /* Space at top of section - adjust as needed (reduced) */
        --why-choose-bottom-space: 0.5rem;        /* Space at bottom of section - adjust as needed (reduced) */
        --why-choose-title-bottom-space: 1rem; /* Space below "WHY CHOOSE US" title - adjust as needed (reduced) */
        
        margin-bottom: 0 !important; /* Remove any negative margins */
        padding-top: var(--why-choose-top-space) !important; /* Control top spacing */
        padding-bottom: var(--why-choose-bottom-space) !important; /* Control bottom spacing */
        margin-bottom: 25px !important;
        overflow:hidden ;
    }
    
    /* Reduce space between title and subtitle */
    .why-choose-us-section .section-main-title {
        margin-bottom: var(--why-choose-title-bottom-space) !important; /* Control space below title (reduced) */
        overflow:hidden ;
    }
    
    /* Reduce space below subtitle */
    .why-choose-us-section .section-subtitle-text {
        margin-bottom: 1rem !important; /* Reduced space below subtitle */
        overflow:hidden ;
    }
    
    /* Additional control for the gap between sections */
    .why-choose-us-section + .services-section {
        margin-top: 0 !important; /* Remove any top margin */
        overflow:hidden ;
    }
    
    /* Ensure the services section header is visible on mobile */
    .services-section .row:first-child {
        display: block !important;
    }
    
    .services-section .col-lg-12 {
        display: block !important;
        width: 100% !important;
    }
    
    /* Control title spacing */
    .services-section .section-title {
        margin-top: var(--services-title-top-space) !important; /* Control space above title */
        margin-bottom: var(--services-title-bottom-space) !important; /* Control space below title */
    }
    
    /* Control subtitle spacing */
    .services-section .section-subtitle {
        margin-bottom: var(--services-subtitle-bottom-space) !important; /* Control space below subtitle (red rectangle area) */
    }
    
    .section-title-large {
        font-size: 1.75rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    /* Switch order on mobile - Agency Service (blue) first, Extra Service (green) second */
    .services-section .row.g-4 {
        display: flex;
        flex-direction: column;
    }
    
    /* Target the column containers to change order */
    .services-section .row.g-4 .col-lg-5:first-child {
        order: 2; /* Extra Service (green) - appears second on mobile */
    }
    
    .services-section .row.g-4 .col-lg-5:last-child {
        order: 1; /* Agency Service (blue) - appears first on mobile */
    }
    
    .service-package-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-package-header h3 {
        font-size: 1.5rem;
    }
    
    .service-package-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-package-features li {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .contact-buttons-title {
        font-size: 1.5rem;
    }
    
    .contact-button {
        min-width: 200px;
        padding: 1.25rem 2rem;
        font-size: 1.2rem;
    }
    
    .contact-buttons-divider {
        display: none;
    }
    
    .contact-info-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-image {
        width: 100px;
        height: 100px;
        overflow:hidden ;
    }
    
    /* FAQ Mobile - Smaller number squares, minimal margins, more space for content */
    .faq-item {
        margin-left: 3px !important; /* Minimal left margin */
        margin-right: 3px !important; /* Minimal right margin */
        gap: 0.75rem; /* Reduce gap between number and content */
    }
    
    .faq-number {
        min-width: 45px !important; /* Smaller square */
        max-width: 45px !important; /* Fixed smaller size */
        padding: 0.5rem 0.4rem !important; /* Reduced padding for smaller square */
        font-size: 0.9rem !important; /* Smaller font for number */
        border-radius: 10px; /* Slightly smaller border radius */
    }
    
    .faq-content {
        flex: 1; /* Take remaining space */
        padding: 1.25rem !important; /* More padding for questions/answers */
    }
    
    .faq-question h3 {
        font-size: 1.1rem !important; /* Larger font for questions */
        line-height: 1.4; /* Better line spacing */
    }
    
    .faq-answer p {
        font-size: 1rem !important; /* Larger font for answers */
        line-height: 1.6 !important; /* Better line spacing for answers */
    }
    
    /* Partners Title Spacing Control - Mobile */
    .partners-section {
        /* Adjustable spacing variables - Easy to modify */
        --partners-title-top-space: -1rem;      /* Space above "Partners" title (red rectangle area) - adjust as needed */
        --partners-title-bottom-space: 1rem;    /* Space below "Partners" title - adjust as needed */
        --partners-content-top-padding: 1.5rem;  /* Top padding of partners content section - adjust as needed */
    }
    
    .partners-content {
        padding-top: var(--partners-content-top-padding) !important; /* Control top spacing of content */
    }
    
    .partners-title {
        font-size: 2rem;
        margin-top: var(--partners-title-top-space) !important;    /* Control space above title */
        margin-bottom: var(--partners-title-bottom-space) !important; /* Control space below title */
    }
    
    /* Partners Section Mobile - Logos Exit Screen Effect */
    .partners-section {
        width: 100vw !important; /* Full viewport width */
        max-width: 100vw !important;
        margin-left: 0 !important; /* No left margin */
        margin-right: 0 !important; /* No right margin */
        padding-left: 0 !important; /* No left padding */
        padding-right: 0 !important; /* No right padding */
        overflow: hidden !important; /* Hide overflow so logos exit screen */
        border: none !important; /* Remove any borders */
        outline: none !important; /* Remove any outlines */
        position: relative;
        padding-bottom: 60px !important; 
    }
    
    .partners-section .container {
        max-width: 100vw !important; /* Full viewport width */
        width: 100vw !important; /* Full viewport width */
        padding-left: 0 !important; /* No left padding */
        padding-right: 0 !important; /* No right padding */
        margin-left: 0 !important; /* No left margin */
        margin-right: 0 !important; /* No right margin */
        overflow: hidden !important; /* Hide overflow so logos exit screen */
        margin-top: -50px;
        margin-bottom: -30px;
        border: none !important; /* Remove any borders */
        outline: none !important; /* Remove any outlines */
    }
    
    .partners-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .partners-section [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .partners-content {
        width: 100vw !important; /* Full viewport width */
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border: none !important;
        outline: none !important;
        overflow: hidden !important; /* Hide overflow so logos exit screen */
    }
    
    .partners-logos {
        width: 100vw !important; /* Full viewport width */
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important; /* Hide overflow so logos exit screen */
        border: none !important;
        outline: none !important;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .partners-logos-row-1,
    .partners-logos-row-2 {
        width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .partner-logo-box {
        border: none !important; /* Remove any borders from logo boxes */
        outline: none !important; /* Remove any outlines */
    }
    
    .partners-logos::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Keep scrolling animation on mobile for partners - Infinite seamless scroll */
    .partners-logos {
        overflow: hidden !important; /* Hide overflow to create scrolling effect */
        position: relative;
        width: 100vw !important;
        display: flex;
        align-items: center;
        /* Logos will continuously enter from one side and exit the other */
        /* No visible start or end point - truly infinite circle/loop */
    }
    
    .partners-logos-track {
        display: inline-flex;
        flex-wrap: nowrap;
        gap: 1.5rem; /* Further reduced gap for mobile to fit more logos */
        width: fit-content;
        will-change: transform; /* Optimize for smooth animation */
        backface-visibility: hidden; /* Prevent flickering */
        -webkit-backface-visibility: hidden;
        transform: translateZ(0); /* Force hardware acceleration */
        /* Logos arranged in a circle - track contains duplicated set for seamless spin */
        /* [Set1, Set2] - when animation moves -50%, Set2 is in exact same position as Set1 */
        /* This creates continuous circular spin with no end point - truly infinite rotation */
    }
    
    /* Continuous circular spin - no loop end point, just constant rotation */
    /* Speed variable controls rotation speed only - the spin never ends, it's infinite */
    .partners-logos-row-1 .partners-logos-track {
        animation: scroll-left-mobile var(--partners-scroll-speed) linear infinite !important;
        /* Circle spins continuously - logos enter from right, exit left, infinite rotation */
    }
    
    .partners-logos-row-2 .partners-logos-track {
        animation: scroll-right-mobile var(--partners-scroll-speed) linear infinite !important;
        /* Circle spins continuously - logos enter from left, exit right, infinite rotation */
    }
    
    /* Ensure logos container doesn't clip content */
    .partners-logos-row-1,
    .partners-logos-row-2 {
        overflow: visible !important; /* Allow logos to be fully visible during animation */
        position: relative;
    }
    
    .partner-logo-item {
        flex: 0 0 auto;
        min-width: fit-content; /* Ensure logos aren't cut off */
    }
    
    .partner-logo-box {
        min-width: 100px; /* Smaller minimum width for mobile to fit more logos */
        max-width: 160px; /* Maximum width to ensure logos fit on screen */
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem; /* Further reduced padding for mobile */
        box-sizing: border-box;
    }
    
    /* Ensure logos are fully visible and not cut off */
    .partner-logo-item {
        flex-shrink: 0; /* Prevent logos from shrinking */
    }
    
    .partner-logo-img,
    .partner-logo-svg,
    .meta-logo-container,
    .oberlo-logo {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    /* Adjust logo sizes for mobile visibility - ensure they fit on screen */
    .partner-logo-img {
        max-width: 90px !important;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .partner-logo-svg {
        max-width: 120px !important;
        width: auto;
        height: 35px !important;
    }
    
    .meta-icon {
        font-size: 2rem !important;
    }
    
    .meta-text {
        font-size: 1.5rem !important;
    }
    
    .oberlo-logo {
        font-size: 1.8rem !important;
    }
    
    .contact-info-box,
    /* Contact Form Mobile - Adjustable Input Sizes */
    .contact-form-section {
        margin-bottom: -45px;
        padding-bottom: 0;
        padding-top: 3rem;
        
        /* Adjustable spacing variables - Easy to modify */
        --form-left-spacing: 1.7rem;      /* Left spacing (inches/rem) - adjust as needed */
        --form-right-spacing: 0.5rem;     /* Right spacing (inches/rem) - adjust as needed */
        --form-top-spacing: 1.5rem;      /* Top spacing */
        --form-bottom-spacing: 1.5rem;   /* Bottom spacing */
        
        /* Contact Forum Title Spacing Controls - Red Rectangle Areas */
        --contact-title-top-space: 0.3rem;      /* Space above "CONTACT FORUM" title - adjust as needed */
        --contact-title-bottom-space: 0.3rem;   /* Space below "CONTACT FORUM" title - adjust as needed */
    }
    
    /* Control spacing around Contact Forum title (red rectangles) */
    .contact-form-section .section-main-title {
        margin-top: var(--contact-title-top-space) !important;    /* Space above title */
        margin-bottom: var(--contact-title-bottom-space) !important; /* Space below title */
    }
    
    .contact-form-section .row:first-child {
        margin-bottom: 0 !important;
    }
    
    .contact-form-section .row:first-child .col-lg-12 {
        margin-bottom: 0 !important;
    }
    
    .contact-form {
        padding: var(--form-top-spacing) var(--form-right-spacing) var(--form-bottom-spacing) var(--form-left-spacing) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Form Input Controls - Mobile */
    .contact-form .form-control {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 0.875rem !important; /* Adjustable input padding */
        font-size: 1rem !important;
        border: 2px solid #E0E0E0 !important;
        border-radius: 8px !important;
    }
    
    .contact-form .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .contact-form [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .contact-form [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    /* Contact Form Send Button - Centered on Mobile */
    .contact-form .col-12.text-end {
        text-align: center !important;
        padding-top: -6rem;
    }
    
    .contact-form .btn-primary {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 3rem auto;
        text-align: center;
    }
    
    .footer-section {
        padding: 40px 0 0;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-main-title {
        font-size: 1.5rem;
    }
    
    .section-title-large {
        font-size: 1.5rem;
    }
    
    /* Contact Buttons Section Mobile - Black Area Spacing Control */
    .contact-buttons-section {
        /* Adjustable spacing variables - Easy to modify */
        --contact-buttons-top-space: 2rem;      /* Space at the top of black section (red rectangle area) - adjust as needed */
        --contact-buttons-bottom-space: 3rem;   /* Space at the bottom of black section (red rectangle area) - adjust as needed */
        --contact-buttons-title-top-space: 0;   /* Space above title - adjust as needed */
        --contact-buttons-title-bottom-space: 0.5rem; /* Space below title - adjust as needed */
        --contact-buttons-buttons-bottom-space: 0; /* Space below buttons - adjust as needed */
        
        padding-top: var(--contact-buttons-top-space) !important; /* Control top spacing of black area */
        padding-bottom: var(--contact-buttons-bottom-space) !important; /* Control bottom spacing of black area */
    }
    
    .contact-buttons-title {
        font-size: 1.1rem;
        margin-top: var(--contact-buttons-title-top-space) !important; /* Control space above title */
        margin-bottom: var(--contact-buttons-title-bottom-space) !important; /* Control space below title */
    }
    
    .contact-buttons-subtitle {
        margin-bottom: 2rem !important; /* Space below subtitle */
    }
    
    .contact-button {
        width: 100%;
        min-width: auto;
    }
    
    .contact-buttons-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: var(--contact-buttons-buttons-bottom-space) !important; /* Control space below buttons */
    }
    
    .service-package-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        overflow:hidden ;
    }
    
    .faq-content {
        padding: 1.25rem !important; /* More padding for questions/answers */
        flex: 1; /* Take remaining space */
    }
    
    /* FAQ Section Mobile - Top Space Control */
    .faq-section {
        /* Adjustable top spacing - Easy to modify */
        --faq-top-space: 1rem;      /* Space at the top of section - adjust as needed (reduce for less space) */
        --faq-bottom-space: 1rem;   /* Space at the bottom of section - adjust as needed */
        padding-top: var(--faq-top-space) !important; /* Control top spacing */
        padding-bottom: var(--faq-bottom-space) !important; /* Control bottom spacing */
        margin-top: 0 !important; /* Remove any top margin */
    }
    
    /* Reduce space from previous section */
    .contact-buttons-section + .faq-section {
        margin-top: 0 !important; /* Remove margin from previous section */
    }
    
    /* Ensure FAQ section container has minimal margins */
    .faq-section .container {
        padding-left: 3px !important;
        padding-right: 3px !important;
        padding-top: 0 !important; /* Remove container top padding */
    }
    
    .faq-section .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important; /* Remove row top margin */
    }
    
    .faq-section [class*="col-"] {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
    
    /* Reduce space above FAQ title */
    .faq-section .section-main-title {
        margin-top: 0 !important; /* Remove top margin from title */
        padding-top: 0 !important; /* Remove top padding from title */
    }
    
    /* Why We Better Section Mobile - Top Space Control */
    .why-we-better-section {
        /* Adjustable top spacing - Easy to modify */
        --why-better-top-space: 2rem;      /* Space at the top of section (red rectangle area) - adjust as needed */
        --why-better-image-top-space: 0;   /* Space above image - adjust as needed */
    }
    
    .why-we-better-section {
        padding-top: var(--why-better-top-space) !important; /* Control top spacing */
        padding-bottom: 0 !important;
    }
    
    /* Switch order on mobile - Image first, then text */
    .why-we-better-section .row {
        display: flex;
        flex-direction: column;
    }
    
    .why-we-better-section .col-lg-6:first-child {
        order: 2; /* Text comes second */
    }
    
    .why-we-better-section .col-lg-6:last-child {
        order: 1; /* Image comes first */
    }
    
    .why-we-better-content {
        padding-right: 0;
        margin-bottom: 2rem;
        margin-top: 2rem; /* Add space above text when it comes after image */
    }
    
    .why-we-better-image {
        margin-bottom: 0; /* Remove bottom margin since image is first */
        margin-top: var(--why-better-image-top-space) !important; /* Control space above image */
    }
    
    /* Floating buttons on mobile */
    .floating-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
        flex-direction: row !important; /* Buttons in same line on mobile */
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        animation: float-horizontal 3s ease-in-out infinite !important;
    }
    
    .floating-button:nth-child(2) {
        animation-delay: 0.5s !important;
    }
    
    .floating-button:hover {
        animation: float-horizontal 1s ease-in-out infinite, pulse 2s ease-in-out infinite !important;
    }
    
    /* Footer Mobile - Reduced size with adjustable margins */
    .footer {
        /* Adjustable margins - Easy to modify */
        --footer-margin-top: 1rem;      /* Top margin - adjust as needed */
        --footer-margin-bottom: 0.5rem; /* Bottom margin - adjust as needed */
        --footer-padding-top: 2rem;     /* Top padding - adjust as needed */
        --footer-padding-bottom: 1.5rem; /* Bottom padding - adjust as needed */
        
        padding-top: var(--footer-padding-top) !important;
        padding-bottom: var(--footer-padding-bottom) !important;
        margin-top: var(--footer-margin-top) !important;
        margin-bottom: var(--footer-margin-bottom) !important;
    }
    
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer h5 {
        font-size: 1.2rem !important; /* Smaller headings on mobile */
        margin-bottom: 0.75rem !important;
    }
    
    .footer p {
        font-size: 0.9rem !important; /* Smaller text on mobile */
        margin-bottom: 0.5rem !important;
    }
    
    .footer .row {
        margin-bottom: 1rem !important;
    }
    
    .footer .row:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-copyright {
        padding: 0.75rem 0 !important; /* Reduced copyright padding */
        margin-top: 1rem !important; /* Reduced top margin */
        font-size: 0.85rem !important; /* Smaller copyright text */
    }
    
    /* Footer Text Positioning Controls - Mobile Only */
    .footer-section {
        /* Adjustable positioning variables - Easy to modify */
        --footer-tagline-margin-top: 0.5rem;        /* Tagline top margin */
        --footer-tagline-margin-bottom: 1.5rem;      /* Tagline bottom margin */
        --footer-title-margin-top: 0.5rem;           /* Section title top margin */
        --footer-title-margin-bottom: 0.75rem;        /* Section title bottom margin */
        --footer-contact-margin-top: 0;              /* Contact section top margin */
        --footer-contact-margin-bottom: 1.5rem;      /* Contact section bottom margin */
        --footer-about-margin-top: 0;                 /* About section top margin */
        --footer-about-margin-bottom: 0;             /* About section bottom margin */
        --footer-text-left-padding: 0;               /* Left padding for text */
        --footer-text-right-padding: 0;               /* Right padding for text */
    }
    
    .footer-tagline {
        margin-top: var(--footer-tagline-margin-top) !important;
        margin-bottom: var(--footer-tagline-margin-bottom) !important;
        padding-left: var(--footer-text-left-padding) !important;
        padding-right: var(--footer-text-right-padding) !important;
    }
    
    .footer-section-title {
        margin-top: var(--footer-title-margin-top) !important;
        margin-bottom: var(--footer-title-margin-bottom) !important;
        padding-left: var(--footer-text-left-padding) !important;
        padding-right: var(--footer-text-right-padding) !important;
    }
    
    .footer-contact {
        margin-top: var(--footer-contact-margin-top) !important;
        margin-bottom: var(--footer-contact-margin-bottom) !important;
        padding-left: var(--footer-text-left-padding) !important;
        padding-right: var(--footer-text-right-padding) !important;
    }
    
    .footer-contact p {
        margin-top: 0 !important; /* Reset desktop margin-top */
        margin-bottom: 0.5rem !important;
    }
    
    .footer-contact p:last-child {
        margin-top: 0 !important; /* Reset desktop negative margin */
    }
    
    .footer-about {
        margin-top: var(--footer-about-margin-top) !important;
        margin-bottom: var(--footer-about-margin-bottom) !important;
        padding-left: var(--footer-text-left-padding) !important;
        padding-right: var(--footer-text-right-padding) !important;
    }
    
    .footer-logo {
        margin-bottom: 1rem !important; /* Reduced on mobile */
        
    }
    
    .footer-logo-img {
        margin-bottom: 0.75rem !important; /* Reduced on mobile */
        
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.floating-button:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-whatsapp-btn {
    background-color: var(--green-whatsapp);
}

.floating-whatsapp-btn:hover {
    background-color: var(--green-whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--text-light);
}

.floating-telegram-btn {
    background-color: var(--blue-telegram);
}

.floating-telegram-btn:hover {
    background-color: var(--blue-telegram-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
    color: var(--text-light);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Horizontal Floating Animation for Mobile */
@keyframes float-horizontal {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
}

/* Pulse Animation on Hover */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.floating-button:hover {
    animation: float 1s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

/* Print Styles */
@media print {
    .navbar,
    .contact-buttons-section,
    .contact-form-section,
    .footer-section,
    .floating-contact-buttons {
        display: none;
    }
}

