@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-anthracite: #15181b;
    --color-anthracite-light: #212529;
    --color-anthracite-dark: #0e1012;
    --color-orange: #f25c05;
    --color-orange-dark: #d44d00;
    --color-orange-light: #ff7d33;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;
    --color-green: #2ec4b6;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-anthracite-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-anthracite);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badges */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-dark {
    background-color: var(--color-anthracite);
    color: var(--color-white);
}

.badge-orange {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff66;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #00ff66;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 14px #00ff66;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(242, 92, 5, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(242, 92, 5, 0.4);
}

.btn-secondary {
    background-color: var(--color-anthracite);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(21, 24, 27, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-anthracite-light);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-anthracite);
    border: 2px solid var(--color-anthracite);
}

.btn-outline:hover {
    background-color: var(--color-anthracite);
    color: var(--color-white);
}

/* Call to Action Button Specifics */
.btn-cta {
    display: flex;
    flex-direction: column;
    padding: 16px 40px;
    border-radius: 16px;
    line-height: 1.1;
}

.btn-cta .btn-subtitle {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.btn-cta .btn-title {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

/* Header */
header {
    background-color: var(--color-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: var(--color-orange);
}

.logo-text {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-anthracite);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -3px;
}

.header-phone {
    display: flex;
    align-items: center;
}

.header-phone .btn {
    padding: 12px 24px;
    border-radius: 12px;
}

.header-phone .btn-primary {
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.2);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-h1 {
    font-size: 54px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--color-anthracite);
}

.hero-h1 span.highlight-orange {
    color: var(--color-orange);
}

.hero-h1 span.highlight-dark {
    color: var(--color-anthracite);
}

.hero-desc {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-desc strong {
    color: var(--color-anthracite);
}

.hero-desc span.highlight-accent {
    color: var(--color-orange);
    font-weight: 700;
}

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

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    /* Red-offset shadow style like in mock but orange */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: var(--color-orange);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image-container::after {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
}

.hero-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 8px solid var(--color-anthracite);
}

/* Ticker Section */
.ticker-section {
    background-color: var(--color-anthracite);
    color: var(--color-white);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--color-orange);
    border-bottom: 2px solid var(--color-orange);
}

.ticker-wrap {
    display: flex;
    width: 100%;
}

.ticker {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: ticker 25s linear infinite;
    gap: 30px;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.ticker-item i,
.ticker-item span.star {
    color: var(--color-orange);
    font-size: 20px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header .sub {
    color: var(--color-orange);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 40px;
    text-transform: uppercase;
}

.section-header h2 span {
    color: var(--color-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 92, 5, 0.1);
    color: var(--color-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--color-orange);
    color: var(--color-white);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-gray);
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-anthracite);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--color-orange);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-us-content h2 span {
    color: var(--color-orange);
}

.why-us-p {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-feature-icon {
    font-size: 24px;
    color: var(--color-orange);
}

.why-feature-item h4 {
    font-size: 18px;
    text-transform: uppercase;
}

.why-feature-item p {
    font-size: 14px;
    color: var(--color-gray);
}

.why-us-image-wrapper {
    position: relative;
}

.why-us-image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-us-image-container::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    left: -15px;
    bottom: -15px;
    background: var(--color-anthracite);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.why-us-image-wrapper:hover .why-us-image-container::after {
    top: 8px;
    right: 8px;
    left: -8px;
    bottom: -8px;
}

.why-us-image {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 8px solid var(--color-orange);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-gray-light);
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: rgba(242, 92, 5, 0.1);
    font-family: var(--font-heading);
    font-weight: 900;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 20px;
}

.review-text {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-orange);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.author-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: var(--color-gray);
}

/* Contact & Info Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.contact-form-wrapper {
    background-color: var(--color-light);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    border: 1px solid var(--color-gray-light);
}

.contact-form-wrapper h3 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    color: var(--color-gray);
    font-size: 15px;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--color-anthracite);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    color: var(--color-anthracite);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(242, 92, 5, 0.1);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background-color: var(--color-light);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--color-gray-light);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-card-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-card-content p {
    color: var(--color-gray);
    font-size: 15px;
}

.info-card-content a {
    color: var(--color-anthracite);
    font-weight: 700;
}

.info-card-content a:hover {
    color: var(--color-orange);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer styling */
footer {
    background-color: var(--color-anthracite-dark);
    color: var(--color-white);
    padding: 80px 0 30px 0;
    border-top: 5px solid var(--color-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about .logo-main {
    color: var(--color-white);
}

.footer-about p {
    color: #a0a5a9;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--color-anthracite-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-orange);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #a0a5a9;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    border-top: 1px solid #2c3238;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #80868b;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

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

/* Floating review toast */
.review-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--color-gray-light);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 320px;
    z-index: 999;
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.review-toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-anthracite);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-toast-content {
    display: flex;
    flex-direction: column;
}

.review-toast-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-anthracite);
}

.review-toast-sub {
    font-size: 12px;
    color: var(--color-gray);
    margin-top: 1px;
}

.review-toast-stars {
    color: #ffc107;
    font-size: 11px;
    margin-top: 2px;
}

.review-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 12px;
    color: var(--color-gray);
    cursor: pointer;
    background: none;
    border: none;
}

.review-toast-close:hover {
    color: var(--color-orange);
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-h1 {
        font-size: 42px;
    }

    .hero-grid {
        gap: 40px;
    }

    .why-us-grid,
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
        /* Compact mobile header */
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-container {
        flex-direction: column;
        gap: 8px;
        /* Tighter gap */
        align-items: center;
    }

    .logo {
        justify-content: center;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .header-phone {
        display: block;
        width: 100%;
        text-align: center;
    }

    .header-phone .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding: 10px 20px;
        /* Tighter button padding */
        font-size: 18px;
        font-weight: 900;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.3);
    }

    .hero {
        height: calc(100vh - 115px);
        /* Fit within remaining screen space */
        min-height: 480px;
        padding: 10px 0 15px 0;
        /* Bottom padding exactly 15px */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero .container {
        height: 100%;
        /* Force container height propagation */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 15px;
    }

    /* Layout styling similar to the reference mobile template */
    .hero-image-wrapper {
        order: -1;
        /* Place image on top of flex layout */
        margin-bottom: 0;
        width: 100%;
        flex: 1;
        /* Stretch to fill remaining space */
        min-height: 110px;
        /* Allow shrinking to prevent button overflow */
        display: flex;
        flex-direction: column;
    }

    .hero-image-container {
        width: 100%;
        height: 100%;
        flex: 1;
        display: flex;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero-h1 {
        font-size: 26px;
        text-align: center;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .hero-desc {
        text-align: center;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.4;
    }

    .badge-container {
        margin-bottom: 0;
        justify-content: center;
        gap: 8px;
    }

    .hero-content .btn-cta {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        padding: 12px 24px;
        border-radius: 12px;
    }

    .hero-content .btn-cta .btn-title {
        font-size: 36px;
    }

    .hero-content .btn-cta .btn-subtitle {
        font-size: 10px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-image-wrapper {
        margin-top: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content .badge-orange {
        display: none;
    }

    .review-toast {
        bottom: 95px;
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .mobile-call-bar {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        background: transparent;
        border: none;
        padding: 0 16px;
        z-index: 999;
        pointer-events: none;
        box-shadow: none;
        /* Hidden state */
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-call-bar.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-call-bar .btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 16px 20px;
        border-radius: 12px;
        font-size: 20px;
        font-weight: 900;
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: none;
        /* Disabled when hidden */
        box-shadow: 0 8px 24px rgba(242, 92, 5, 0.4);
        transition: transform 0.2s ease;
    }

    .mobile-call-bar.visible .btn {
        pointer-events: auto;
        /* Enable when visible */
    }

    body {
        padding-bottom: 95px;
    }
}

@media (max-width: 480px) {
    .hero-h1 {
        font-size: 28px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .btn-cta .btn-title {
        font-size: 22px;
    }
}

/* Icons replacement styling for FontAwesome fallback */
.fa-pulse-icon {
    animation: fa-pulse 2s infinite linear;
}

@keyframes fa-pulse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Cookie Consent Banner Styling */
.cookie-banner-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: calc(100% - 48px);
    max-width: 440px;
    background: rgba(21, 24, 27, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 99999;
    color: var(--color-white);
    font-family: var(--font-body);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookie-banner-card.cookie-banner--hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
    visibility: hidden;
}

.cookie-banner-content h3 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cookie-banner-content p {
    font-size: 13.5px;
    color: #a0a5a9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-banner-content p a {
    color: var(--color-orange);
    text-decoration: underline;
}

.cookie-banner-content p a:hover {
    color: var(--color-orange-light);
}

/* Actions/Buttons */
.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cookie-btn {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.cookie-btn-primary:hover {
    background-color: var(--color-orange-dark);
}

.cookie-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-link {
    background: none;
    color: var(--color-orange);
    padding: 10px 0;
    font-size: 13px;
    text-decoration: underline;
}

.cookie-btn-link:hover {
    color: var(--color-orange-light);
}

/* Custom Settings Panel */
.cookie-options-list {
    margin: 16px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Custom scrollbar for options list */
.cookie-options-list::-webkit-scrollbar {
    width: 4px;
}
.cookie-options-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.cookie-options-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.cookie-option-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-option-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.cookie-option-desc {
    font-size: 12px !important;
    color: #808589 !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
}

/* Custom Switch Toggle styling */
.cookie-toggle-wrapper {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-top: 2px;
}

.cookie-toggle-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: .3s;
    border-radius: 34px;
}

.cookie-toggle-label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--color-white);
    transition: .3s;
    border-radius: 50%;
}

.cookie-toggle-wrapper input:checked + .cookie-toggle-label {
    background-color: var(--color-orange);
}

.cookie-toggle-wrapper input:checked + .cookie-toggle-label:before {
    transform: translateX(18px);
}

.cookie-toggle-wrapper input:disabled + .cookie-toggle-label {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer Link styling override */
.cookie-settings-btn {
    cursor: pointer;
    transition: var(--transition);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-banner-card {
        bottom: 80px; /* Position above the sticky mobile call bar */
        right: 16px;
        left: 16px;
        width: auto;
        padding: 20px;
    }
}