/* Custom CSS Variables */
:root {
    --primary-color: #0062cc;
    --primary-dark: #004e9e;
    --primary-light: #3986e8;
    --secondary-color: #00a0e9;
    --accent-color: #00d1ff;
    --light-blue: #e6f7ff;
    --dark-blue: #003366;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --mid-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-color: #2c3e50;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.12);
    --card-shadow: 0 10px 30px rgba(0, 98, 204, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-sm: 0.25rem;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

section {
    position: relative;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 1;
}

/* Button Styles */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: none;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: height 0.3s ease;
}

.btn:hover::after {
    height: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover, .btn-light:focus {
    background-color: var(--light-gray);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-lg {
    padding: 0.875rem 2.25rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
}

.btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
}

.nav-btn {
    border-radius: 50px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subheader {
    margin-bottom: 2rem;
}

/* Animation for Elements */
/* [data-aos] {
    pointer-events: none;
}
[data-aos].animated {
    pointer-events: auto;
} */

/* Utility Classes */
.shadow-custom {
    box-shadow: var(--box-shadow);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.text-primary {
    color: var(--primary-color) !important;
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.overflow-hidden {
    overflow: hidden;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-70 {
    opacity: 0.7;
}

/* Custom Animation Keyframes */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 98, 204, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 98, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 98, 204, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header Styles */
#main-header {
    position: relative;
}

#mainNav {
    background-color: rgba(0, 98, 204, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

#mainNav.navbar-shrink {
    padding: 0.5rem 0;
    background-color: rgba(0, 98, 204, 0.98);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
}

.navbar-brand span {
    background: linear-gradient(to right, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0.5rem;
}

#mainNav .navbar-brand img {
    transition: height 0.3s cubic-bezier(0.4,0,0.2,1), margin 0.3s cubic-bezier(0.4,0,0.2,1);
    position: absolute;
    height: 122px;
    top: -20px;
}
#mainNav.navbar-shrink .navbar-brand img {
    height: 79px !important;
    margin-right: 0.25rem;
    top: -20px;
}

.nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
}

.btn-call {
    color: var(--white);
    background-color: var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.5);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-blue) 100%);
    background-size: cover;
    position: relative;
    min-height: 100vh;
    padding: 160px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-shape-1, .hero-shape-2 {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.hero-shape-1 {
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,208C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    z-index: 1;
    opacity: 0.6;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.badge-pill {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-10deg);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.satisfaction-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    z-index: 2;
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-weight: 800;
    font-size: 1.5rem;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    max-width: 80px;
    margin: 0 auto;
}

.trust-indicators {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--border-radius);
    padding: 0.75rem;
}

.trust-item {
    color: var(--white);
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.scrolling-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scrolling-indicator a {
    color: var(--white);
    font-size: 0.875rem;
    display: block;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
    }
}

/* Benefits Section */
#benefits {
    background-color: var(--white);
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefit-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    background-color: var(--white);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    height: 100%;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.icon-box::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0;
    transform: scale(1.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .icon-box {
    background-color: var(--primary-color);
}

.benefit-card:hover .icon-box i {
    color: var(--white);
}

.benefit-card:hover .icon-box::after {
    opacity: 0.5;
    transform: scale(1);
}

.benefit-stat {
    margin-top: 1.5rem;
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    overflow: hidden;
}

.benefit-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 98, 204, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
    z-index: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

/* Services Section */
.service-tabs {
    margin-bottom: 2rem;
}

.nav-pills .nav-link {
    background-color: var(--white);
    color: var(--text-color) !important;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    margin: 0 0.5rem 0.5rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--mid-gray);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-pills .nav-link::after {
    display: none;
}

.nav-pills .nav-link:hover {
    background-color: var(--light-blue);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.service-content {
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    border: 1px solid var(--mid-gray);
}

.tab-pane {
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.active {
    opacity: 1;
}

.tab-pane-title {
    color: var(--primary-dark);
    font-weight: 700;
}

.service-tab-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border-left: none;
}

.service-list li:hover {
    transform: none;
    box-shadow: none;
    border-left-color: transparent;
}

.service-list i {
    color: var(--success);
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
    background-color: var(--light-blue);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-list h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.service-list p {
    margin-bottom: 0;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.performance-comparison {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.comparison-box {
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.comparison-box h4 {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.comparison-box.before {
    background-color: rgba(220, 53, 69, 0.05);
    border-left: 4px solid var(--danger);
}

.comparison-box.after {
    background-color: rgba(40, 167, 69, 0.05);
    border-left: 4px solid var(--success);
}

.comparison-box ul {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.comparison-box ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.comparison-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.comparison-box.before ul li::before {
    color: var(--danger);
}

.comparison-box.after ul li::before {
    color: var(--success);
}

.performance-meter {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    transform: rotate(-90deg);
}

.performance-meter.low {
    background: conic-gradient(var(--danger) 60%, #e6e6e6 0);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.performance-meter.high {
    background: conic-gradient(var(--success) 95%, #e6e6e6 0);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.performance-meter span {
    background-color: var(--white);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.performance-meter.low span {
    color: var(--danger);
}

.performance-meter.high span {
    color: var(--success);
}

/* Process Section */
#process {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.process-timeline {
    padding: 2rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--light-blue);
    transform: translateX(-50%);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-timeline::before {
        display: block;
    }
}

.process-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background-color: var(--primary-color);
}

.process-step:hover .process-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.process-step h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.process-step p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* Offer Section */
#offer {
    background-color: var(--white);
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.offer-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    color: var(--white);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.offer-box::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.special-offer-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--white), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-subtitle {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.offer-features {
    display: flex;
    flex-wrap: wrap;
}

.feature-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.feature-item i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.countdown {
    margin-top: 1rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    margin: 0 0.25rem;
    min-width: 70px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-item span {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.countdown-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--light-gray);
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.testimonial-card-modern {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--light-blue);
    line-height: 1;
    opacity: 0.3;
    z-index: 0;
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.customer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
    flex-shrink: 0;
}

.customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h5 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.customer-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

.rating {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-color);
    line-height: 1.8;
}

.verified-badge {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-color);
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.verified-badge i {
    color: var(--success);
}

.trust-indicators {
    background-color: #0f88cbe8;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    margin-top: 3rem;
}

.review-platform {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.review-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-platform img {
    margin-bottom: 1rem;
    height: 30px;
    object-fit: contain;
}

.platform-rating {
    text-align: center;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.rating-letter {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
}

.rating-stars {
    color: var(--warning);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.review-count {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

.trust-badge {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-badge h5 {
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

.trust-badge p {
    margin-bottom: 0;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* FAQ Section */
#faq {
    background-color: var(--white);
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.custom-accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.custom-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.custom-accordion .accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: var(--white);
    color: var(--text-color);
    border-radius: var(--border-radius) !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-icon {
    color: var(--white);
}

.faq-tip {
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.faq-tip i {
    color: var(--primary-color);
}

.faq-list {
    padding-left: 1.5rem;
}

.faq-list li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    margin-top: 1rem;
}

.faq-footer {
    margin: 3rem 0;
}

/* CTA Banner */
#cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,138.7C672,149,768,203,864,202.7C960,203,1056,149,1152,144C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.1;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    position: relative;
    padding: 5rem 0 3rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,176C96,160,192,128,288,128C384,128,480,160,576,186.7C672,213,768,235,864,224C960,213,1056,171,1152,154.7C1248,139,1344,149,1392,154.7L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    z-index: 0;
    opacity: 0.5;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-cta {
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.3);
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links-list i {
    font-size: 0.75rem;
}

.contact-info {
    list-style: none;
    padding-left: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info li i {
    width: 25px;
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.contact-info a {
    color: var(--white);
    opacity: 0.8;
}

.contact-info a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    margin-top: 3rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-links li {
    margin-left: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Floating CTA (Mobile) */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1030;
}

.btn-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 98, 204, 0.4);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
    z-index: 10;
}

.float-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.float-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    transform-origin: right bottom;
}

.float-option.call {
    background-color: var(--success);
}

.float-option.email {
    background-color: var(--primary-color);
}

.float-option.map {
    background-color: var(--dark-gray);
}

.float-option:hover {
    transform: translateX(-5px) scale(1.05);
}

.float-option i {
    margin-right: 0.5rem;
}

.float-options.show {
    display: flex;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 98, 204, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: bottom 0.3s ease;
}

.sticky-cta.show {
    bottom: 0;
}

.sticky-text {
    font-weight: 600;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
}

.modal-body {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--mid-gray);
    border-radius: var(--border-radius-sm);
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 98, 204, 0.15);
    border-color: var(--primary-color);
}

/* Additional Responsive Styles */
@media (max-width: 991.98px) {
    #hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-image {
        transform: none;
        margin-top: 2rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .performance-comparison .row {
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-links li {
        margin: 0 0.75rem;
    }
    
    .countdown-item {
        min-width: 65px;
    }
}

@media (max-width: 575.98px) {
    .hero-shape-1, .hero-shape-2 {
        display: none;
    }
    
    .badge-pill {
        font-size: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .countdown-item p {
        font-size: 0.8rem;
    }
    
    .special-offer-badge {
        font-size: 0.75rem;
    }
    
    .offer-title {
        font-size: 1.75rem;
    }
    
    .offer-subtitle {
        font-size: 1.3rem;
    }
} 