/*
* =================================================================================================
*                                    BASE & GENERAL STYLES
* =================================================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* --- CSS Variables (Theme) --- */
:root {
    --primary-color: #00A9E0;
    /* Bright Blue */
    --secondary-color: #00BFA5;
    /* Teal/Green */
    --dark-blue: #2C3E50;
    /* For headings and primary text */
    --medium-gray: #7f8c8d;
    /* For paragraphs and secondary text */
    --light-gray: #ecf0f1;
    /* For backgrounds and borders */
    --white: #ffffff;
    --black: #000000;
    --success-color: #2ecc71;
    --error-color: #e74c3c;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    --transition-speed: 0.3s;
    --container-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--medium-gray);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--dark-blue);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Helpers --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-bg {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--medium-gray);
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-speed) ease;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 179, 224, 0.3);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 179, 224, 0.4);
}

.btn-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/*
* =================================================================================================
*                                       HEADER & NAVIGATION
* =================================================================================================
*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    transition: height var(--transition-speed) ease;
}

.header.scrolled .logo img {
    height: 35px;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list li a {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--dark-blue);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-speed) ease-in-out;
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 100%;
}

.nav-list li a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 1010;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: all 0.35s ease-in-out;
    position: absolute;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.bar:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--dark-blue);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 100px 30px 30px;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color var(--transition-speed) ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--secondary-color);
}

.btn-mobile {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
}

/*
* =================================================================================================
*                                        HERO SECTION
* =================================================================================================
*/
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(to right, rgba(236, 240, 241, 0.95), rgba(236, 240, 241, 0.95)), url('https://images.unsplash.com/photo-1579547945412-480251493b83?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8bGlmZSUyMHNjaWVuY2VzJTJDJTIwbGFib3JhdG9yeSUyQyUyMG1hcmtldGluZ3x8fHx8fDE3MTgxODgzNTY&ixlib=rb-4.0.3&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    animation: fadeInSlideUp 1s ease-out forwards;
}

.hero-text .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: rgba(0, 169, 224, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    background: -webkit-linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInZoom 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-shape {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    border: 10px solid var(--primary-color);
    border-radius: 20px;
    bottom: -30px;
    left: -30px;
    opacity: 0.2;
    transform: rotate(45deg);
    animation: float 8s ease-in-out infinite reverse;
}

/*
* =================================================================================================
*                                       SERVICES SECTION
* =================================================================================================
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease-in-out;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0);
}

.service-card:hover::before {
    opacity: 0.1;
    transform: scale(1.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 169, 224, 0.1), rgba(0, 191, 165, 0.1));
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .read-more {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .read-more i {
    transition: transform var(--transition-speed) ease;
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/*
* =================================================================================================
*                                       WHY CHOOSE US SECTION
* =================================================================================================
*/
.why-us-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
}

.why-us-image {
    position: relative;
    padding: 20px;
}

.why-us-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: var(--border-radius);
    z-index: 0;
    transform: rotate(-5deg);
}

.why-us-content .feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1) rotate(15deg);
}

.feature-text h4 {
    margin-bottom: 0.5rem;
}

/*
* =================================================================================================
*                                       STATS / COUNTER SECTION
* =================================================================================================
*/
.stats-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--light-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}


/*
* =================================================================================================
*                                     ROI CALCULATOR SECTION
* =================================================================================================
*/
.roi-calculator {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 169, 224, 0.4);
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.roi-content h2,
.roi-content p {
    color: var(--white);
}

.calculator-form {
    background: var(--white);
    color: var(--dark-blue);
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-group-roi {
    margin-bottom: 1.5rem;
}

.form-group-roi label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper span {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
}

.form-group-roi input {
    width: 100%;
    padding: 12px 15px 12px 35px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.roi-results {
    margin-top: 2rem;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-align: center;
}

.roi-results h3 {
    margin-bottom: 1rem;
}

.roi-value {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--secondary-color);
}


/*
* =================================================================================================
*                                       TESTIMONIALS SECTION
* =================================================================================================
*/
.testimonials-slider {
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    margin: 0 1rem;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--primary-color);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

.testimonial-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-gray);
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Slick slider styles */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all var(--transition-speed) ease;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}


/*
* =================================================================================================
*                                       PRICING SECTION
* =================================================================================================
*/
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--light-gray);
}

.pricing-card.highlighted {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 169, 224, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header .plan-type {
    color: var(--medium-gray);
    font-style: italic;
}

.price {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--dark-blue);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.features-list {
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--secondary-color);
}

.pricing-card .btn {
    width: 100%;
}

.highlight-badge {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card.highlighted {
    position: relative;
}

/*
* =================================================================================================
*                                       CTA SECTION
* =================================================================================================
*/
.cta-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8YnVzaW5lc3MlMkMlMjBtZWV0aW5nJTJDJTIwZGlnaXRhbHx8fHx8fDE3MTgxODgzODY&ixlib=rb-4.0.3&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1080') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}


/*
* =================================================================================================
*                                          FOOTER
* =================================================================================================
*/
.footer {
    background-color: var(--dark-blue);
    color: var(--light-gray);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--medium-gray);
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-contact ul li a {
    color: var(--medium-gray);
}

.footer-contact ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/*
* =================================================================================================
*                                    CONTACT & LEGAL PAGES
* =================================================================================================
*/

/* Page Header */
.page-header-section {
    padding: 150px 0 80px;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxyYW5kb218MHx8Y29udGFjdCUyQyUyMG9mZmljZSUyQyUyMGJ1c2luZXNzfHx8fHx8fDE3MTgxODg0MTc&ixlib=rb-4.0.3&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=1080') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: var(--white);
}

.page-header-section h1 {
    color: var(--white);
}

.page-header-section p {
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page specific */
.contact-page-section {
    padding: 100px 0;
}

.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-info-block {
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.contact-info-block h2,
.contact-info-block p {
    color: var(--white);
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0.8;
}

.contact-detail-item .info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item .info a {
    color: var(--white);
    text-decoration: none;
}

.contact-detail-item .info a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: border-color var(--transition-speed) ease;
}

.contact-form textarea {
    padding: 12px 15px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.2);
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 52px;
    transform: translateY(-50%);
    color: var(--medium-gray);
    transition: color var(--transition-speed) ease;
}

.contact-form input:focus+.form-icon,
.contact-form textarea:focus+.form-icon {
    color: var(--primary-color);
}


/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-speed) ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: var(--medium-gray);
    text-decoration: none;
    line-height: 1;
}

.popup-close:hover {
    color: var(--dark-blue);
}

.popup-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}

.popup-close-btn {
    margin-top: 1.5rem;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.page-actions {
    margin-top: 3rem;
    text-align: center;
}

/*
* =================================================================================================
*                                       ANIMATIONS & SCROLL EFFECTS
* =================================================================================================
*/
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/*
* =================================================================================================
*                                       RESPONSIVENESS
* =================================================================================================
*/

/* --- Tablets and smaller desktops --- */
@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .why-us-wrapper {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        margin-bottom: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roi-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact ul li {
        justify-content: center;
        text-align: left;
    }
}

/* --- Mobile devices --- */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-block {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .contact-form-wrapper {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .roi-calculator {
        padding: 30px 20px;
    }

    .footer-content {
        gap: 2rem;
    }
}