/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f7f8fc;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

/* CONTAINER */
.container,
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* === NAVBAR === */
.header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a11cb;
}

.logo img {
    height: 32px;
    margin-right: 8px;
}

.logo .logo-fallback {
    display: none;
}

.logo,
.logo a,
.logo img,
.nav-icon,
.nav-icon svg {
    -webkit-tap-highlight-color: transparent;

    -webkit-user-drag: none;
    user-select: none;
}


/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6a11cb;
}

.nav-link.active {
    color: #6d10d1;
    font-weight: 600;
}

/* Nav Divider */
.nav-divider {
    width: 2px;
    height: 24px;
    background-color: #ccc;
    margin: 0 10px;
}

/* Language Dropdown */
.language-select {
    padding: 4px 6px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-left: 10px;
}

/* Social Icons */
.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-icon:hover svg {
    transform: scale(1.1);
}

.telegram-icon {
    background-color: #e9f5ff;
}

.telegram-icon:hover {
    background-color: #d1ebff;
}

.telegram-icon svg path {
    fill: #0088cc;
}

.whatsapp-icon {
    background-color: #e7f7e9;
}

.whatsapp-icon:hover {
    background-color: #d4f0d9;
}

.whatsapp-icon svg path {
    fill: #25D366;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f1f1f1;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #4E69CB;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-phone:hover {
    background-color: #e3e3e3;
    color: #6a11cb;
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    fill: #6a11cb;
}




/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Toggle Button */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Bars */
.mobile-toggle .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle .bar:nth-child(1) {
    top: 0;
}

.mobile-toggle .bar:nth-child(2) {
    top: 12px;
}

.mobile-toggle .bar:nth-child(3) {
    bottom: 0;
}

/* Open (X) State */
.mobile-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-phone .phone-number {
        display: none;
    }
}

/* === MOBILE STYLES === */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 64px;
        left: 0;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-right {
        margin-left: auto;
        gap: 10px;
    }
}




/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #E5EBFF 100%);
    color: #1a1a1a;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 80px 20px;
    text-align: center;
}

.hero-text {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    animation: fadeInLeft 0.8s ease-in-out;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-buttons,
.hero-content .btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.hero-buttons .btn,
.hero-content .btn-group .btn {
    padding: 10px 18px;
    font-size: 1rem;
    min-width: 140px;
    border-radius: 8px;
    white-space: nowrap;
    text-align: center;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background-color: #4E69CB;
    color: white;
    border: 2px solid #4E69CB;
}

.btn-primary:hover {
    background-color: #3f55a8;
    border-color: #3f55a8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 105, 203, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4E69CB;
    border: 2px solid #4E69CB;
}

.btn-secondary:hover {
    background-color: rgba(78, 105, 203, 0.1);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 0.8s ease-in-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.tech-support-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* SVG Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.gear-rotate {
    transform-origin: center;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text {
        text-align: center;
        padding: 10px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .tech-support-svg {
        max-width: 300px;
        margin: 20px auto;
    }
}


/* How It Works Section */
.how-it-works {
    background: #f9fafc;
    padding: 60px 0;
    text-align: center;
}

.how-it-works h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    z-index: 1;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    max-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-6px);
}

.step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2575fc;
}

.step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* How It Works SVG Animations */
.message-bubble {
    animation: messageBubble 3s ease-in-out infinite;
}

@keyframes messageBubble {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05) rotate(2deg);
    }

    100% {
        transform: scale(1);
    }
}

.diagnostic-scan {
    animation: diagnosticScan 3s linear infinite;
}

@keyframes diagnosticScan {
    0% {
        transform: translateY(-5px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateY(30px);
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        transform: translateY(35px);
        opacity: 0;
    }
}

.fix-tool-rotate {
    transform-origin: center;
    animation: fixToolRotate 4s ease-in-out infinite;
}

@keyframes fixToolRotate {
    0% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(-10deg);
    }
}

.checkmark-draw {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkmarkDraw 3s ease-in-out infinite;
}

@keyframes checkmarkDraw {
    0% {
        stroke-dashoffset: 50;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Reveal on scroll animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive for Steps */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 90%;
    }
}



/* Key Points Section */
.key-points {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.key-points h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.key-points h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    max-width: 250px;
    padding: 20px;
    background: #f9fafc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2575fc;
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* Affordable Pricing SVG Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes move-down {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        transform: translateY(20px);
        opacity: 1;
    }

    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

.move-down {
    animation: move-down 2s ease-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Animation Delays */
.float-delay-0-2 {
    animation-delay: 0.2s;
}

.float-delay-0-5 {
    animation-delay: 0.5s;
}

.float-delay-0 {
    animation-delay: 0s;
}

.move-down-delay-0 {
    animation-delay: 0s;
}

.move-down-delay-0-7 {
    animation-delay: 0.7s;
}

.move-down-delay-1-4 {
    animation-delay: 1.4s;
}

.pulse-delay-0 {
    animation-delay: 0s;
}

.pulse-delay-0-5 {
    animation-delay: 0.5s;
}

.clock-hand {
    transform-origin: 50px 50px;
    animation: clockRotate 10s linear infinite;
}

@keyframes clockRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Features Layout */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 90%;
        max-width: 400px;
    }
}


/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header .view-all-link {
    color: #2575fc;
    text-decoration: none;
    font-weight: 500;
}

.section-header .view-all-link:hover {
    text-decoration: underline;
}

/* scroll-row */
.scroll-row {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    align-items: stretch;

}

.scroll-row::-webkit-scrollbar {
    height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* Buttons */
.btn-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #4E69CB;
    border: 2px solid #4E69CB;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(78, 105, 203, 0.1), transparent);
    transition: all 0.5s ease;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 105, 203, 0.2);
}

.btn-link:hover::before {
    left: 100%;
}

.btn-small {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff;
    text-decoration: none;
    border: none;
    padding: 10px 16px;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-small:hover {
    box-shadow: 0 7px 14px rgba(106, 17, 203, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #6a11cb;
    color: #6a11cb;
}

.btn-outline:hover {
    background: rgba(106, 17, 203, 0.05);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background: #f5f8fc;
    text-align: center;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

/* Service Card */
.service-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    flex-grow: 1;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
    color: #6a11cb;
}

.service-card .badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #C7A68A;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.service-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 10px;
}

.service-card .btn-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.service-card .btn-small {
    flex: 1;
    padding: 8px;
    font-size: 0.9rem;
    border-radius: 4px;
    text-align: center;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-row {
        padding: 10px;
        gap: 15px;
    }


    .service-card {
        width: 90%;
        max-width: 400px;
        margin: 0 auto;

    }

    .service-card .btn-group {
        flex-direction: column;
    }

    .service-card .badge {

        top: -7px;
    }

}


/* Subscriptions Section */
.subscriptions-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.subscriptions-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.subscriptions-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

.subscriptions-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Wrapper for cards */
.subscription-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Individual Card */
.subscription-card {
    background: linear-gradient(to bottom right, #F5F0FF 0%, #E2D3F9 100%);
    color: #3A2A5A;
    border-radius: 12px;
    padding: 35px 30px;
    width: 300px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(147, 112, 219, 0.15);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 211, 249, 0.5);
    flex-shrink: 0;
}

.subscription-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(147, 112, 219, 0.25);
}

.subscription-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    letter-spacing: -0.5px;
    color: #3A2A5A;
}

.subscription-card .description {
    font-size: 0.9rem;
    color: #6B5A8A;
    margin-bottom: 25px;
    line-height: 1.5;
}

.subscription-card .price {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: -0.5px;
    color: #6B5A8A;
}

.subscription-card .price span {
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 5px;
    color: #6B5A8A;
}

.subscription-card ul {
    margin: 25px 0;
    padding-left: 0;
    font-size: 0.95rem;
}

.subscription-card ul li {
    list-style-type: none;
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
    color: #4A3A6A;
    font-weight: 500;
}

.subscription-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237B4FBF'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.subscription-card .btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscription-card .btn-small {
    flex: 1;
    padding: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    background: #7B4FBF;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.subscription-card .btn-small:hover {
    background: #6A3DAD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 79, 191, 0.3);
}

.subscription-card .btn-outline {
    flex: 1;
    padding: 8px;
    font-size: 0.85rem;
    border-radius: 4px;
    text-align: center;
    background: transparent;
    color: #7B4FBF;
    font-weight: 600;
    border: 1px solid #7B4FBF;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.subscription-card .btn-outline:hover {
    background: rgba(123, 79, 191, 0.05);
    transform: translateY(-2px);
}

.subscription-card .badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #7B4FBF;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .subscription-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 15px;
    }

    .subscription-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin: 0 auto;
    }

    .subscription-card .btn-group {
        flex-direction: column;
    }
}



/* Deals Section */
.deals-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.deals-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.deals-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

/* Container for cards */
.deals-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Deal Card */
.deals-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.deals-card:hover {
    transform: translateY(-4px);
}

.deals-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.deals-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.deals-card .badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #C7A68A;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.deals-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border-bottom: 3px solid #4E69CB;
}

.deals-card .btn-small {
    display: inline-block;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.deals-card .btn-small:hover {
    background: linear-gradient(90deg, #3A54B4, #6A7ED1);
    box-shadow: 0 4px 8px rgba(78, 105, 203, 0.3);
}

/* Deal Tags */
.deal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.deal-tag {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1), rgba(37, 117, 252, 0.1));
    color: var(--primary, #4E69CB);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.deal-tag.Promo {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.1));
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.2);
}

.deal-tag.Verified {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(110, 231, 183, 0.1));
    color: #059669;
    border-color: rgba(5, 150, 105, 0.2);
}

.deal-tag.Limited {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(252, 211, 77, 0.1));
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

/* Responsive Scroll Mode for Mobile */
@media (max-width: 768px) {
    .deals-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 15px;
    }

    .deals-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin: 0 auto;
    }

    .deal-tags {
        justify-content: flex-start;
    }
}


/* Courses Section */
.courses-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.courses-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.courses-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    border-radius: 2px;
}

/* Container for course cards */
.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Individual Course Card */
.course-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.course-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.course-card .badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #C7A68A;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.course-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border-bottom: 3px solid #4E69CB;
}

.course-card .btn-small {
    display: inline-block;
    background: linear-gradient(90deg, #4E69CB, #7B8FE2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.course-card .btn-small:hover {
    background: linear-gradient(90deg, #3A54B4, #6A7ED1);
    box-shadow: 0 4px 8px rgba(78, 105, 203, 0.3);
}

/* Responsive Horizontal Scroll */
@media (max-width: 768px) {
    .course-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 16px;
    }

    .course-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin: 0 auto;
    }
}

/* CEO Message Section */

/* Container styles */
.message-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Message section styles */
.message-section {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg...%3C/svg%3E");
    opacity: 0.3;
}

/* Flex container */
.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

/* Message card styles */
.message-card {
    flex: 1 1 60%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.quote-mark {
    font-size: 100px;
    line-height: 0;
    position: absolute;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.left-quote {
    top: 30px;
    left: 20px;
}

.right-quote {
    bottom: 30px;
    right: 20px;
}

/* Header with icon */
.header-with-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.shield-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.shield-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    fill: white;
}

/* Text styles */
.message-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
}

.message-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.message-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Rating section */
.rating-section {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    fill: #FCD34D;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

/* Contact card styles */
.contact-card {
    flex: 1 1 35%;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
    min-width: 280px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

/* Contact options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
    background-color: transparent;
}

.contact-option:hover {
    background-color: #F9FAFB;
}

.contact-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.contact-icon-wrapper.phone {
    background-color: #EBF5FF;
}

.contact-icon-wrapper.email {
    background-color: #E6FFFA;
}

.contact-icon-wrapper.chat {
    background-color: #E0F7FA;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
}

.contact-option:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon.phone {
    stroke: #2563EB;
}

.contact-icon.email {
    stroke: #0D9488;
}

.contact-icon.chat {
    stroke: #0891B2;
}

.contact-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
}

/* Button styles */
.btn-contact-home {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    text-align: center;
    color: white;
    font-weight: 500;
    background: linear-gradient(90deg, #3a7bd5, #00d2ff);
    border-radius: 0.75rem;
    margin-top: 1.75rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-contact-home:hover::before {
    left: 100%;
}

.response-time {
    text-align: center;
    color: #6B7280;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .container-flex {
        flex-direction: column;
    }

    .message-card,
    .contact-card {
        width: 100%;
        flex: 1 1 100%;
    }

    .message-card {
        margin-bottom: 2rem;
    }
}


/* Footer Styles - Version 20 */
.footer {
    background: linear-gradient(135deg, #2a5298 0%, #0088cc 100%);
    color: white;
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100'...%3E");
    opacity: 0.1;
    z-index: 0;
}

.container.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.fallback-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: none;
    background: linear-gradient(90deg, #ffffff, #e0f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.footer-logo img[style*="display: none"]+.fallback-logo {
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    will-change: transform, box-shadow, background-color;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: white;
    opacity: 0.95;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-social a:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
}

.footer-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Fix */
@media (max-width: 600px) {
    .footer-links {
        gap: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        font-size: 1rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-copy {
        font-size: 0.85rem;
    }

    .fallback-logo {
        font-size: 1.5rem;
        text-align: center;
    }
}




@media (min-width: 769px) and (max-width: 1024px) {
    .footer-links {
        gap: 2rem;
    }
}


.empty-msg,
.error-msg {
    text-align: center;
    padding: 20px;
    color: #777;
    font-style: italic;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #6a11cb;
    /* sets SVG color */
    transition: color 0.3s ease;
}

.contact-icon:hover {
    color: #ff5733;
    /* hover color */
}

/* Minimal Hero Section */
.minimal-hero-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.minimal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.minimal-hero-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.minimal-hero-text h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.minimal-hero-text p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-hero-text h1 {
        font-size: 2rem;
    }

    .minimal-hero-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .minimal-hero-section {
        padding: 1.5rem 0;
        border-radius: 0 0 20px 20px;
    }

    .minimal-hero-text h1 {
        font-size: 1.65rem;
    }

    .minimal-hero-text p {
        font-size: 1rem;
    }
}


/* Contact page */
/* Contact section */

.contact-section {
    padding: 5rem 0;

    background-color: #f9fafb;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #f9fafb;
    clip-path: ellipse(60% 80px at 50% 80px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.75rem;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.contact-form-header p {
    color: #6B7280;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4B5563;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.15);
}

/* Form validation styles */
.form-control.is-valid {
    border-color: #10B981;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310B981' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.form-control.is-valid:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-control.is-invalid {
    border-color: #EF4444;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23EF4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23EF4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.form-control.is-invalid:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: #EF4444;
    animation: fadeIn 0.3s ease;
}

.form-control.is-invalid~.invalid-feedback {
    display: block;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: #10B981;
    animation: fadeIn 0.3s ease;
}

.form-control.is-valid~.valid-feedback {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}


.btn-contact {
    display: inline-block;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-contact {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-contact:hover::before {
    left: 100%;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

/* Info card */
.info-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.info-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: white;
}

.info-content h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 1.25rem;
}

.info-content p {
    color: #4B5563;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.info-content a {
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.info-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #00d2ff;
    transition: width 0.3s ease;
}

.info-content a:hover {
    color: #00d2ff;
}

.info-content a:hover::after {
    width: 100%;
}


/* Responsive Fixes */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container,
    .info-card {
        padding: 2rem;
    }

    .contact-form-header h2 {
        font-size: 1.5rem;
    }

    .info-content h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-grid {
        padding: 0 1rem;
    }

    .contact-form-container,
    .info-card {
        padding: 1.5rem;
        width: 100%;
        margin: 0 auto;
    }

    .form-label {
        font-size: 0.95rem;
    }

    .form-control {
        font-size: 0.95rem;
    }

    .btn-contact {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem;
    }

    .info-content p {
        font-size: 1rem;
    }

    .info-icon {
        width: 3.2rem;
        height: 3.2rem;
    }

    .info-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .contact-section::before {
        clip-path: ellipse(80% 60px at 50% 60px);
    }
}




/* ===== checkout.html ===== */
section {
    padding: 40px 0;
}

/* Service Details Section */
.service-details-section {


    background-color: #f9fafb;
}

.service-details-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #f9fafb;
    clip-path: ellipse(60% 80px at 50% 80px);
}

.service-out {
    flex: 0 0 auto;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    scroll-snap-align: start;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;


}

.service-out:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-out h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;

}

.service-out p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}


.service-out ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0 1.5rem;

}


.service-out ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.service-out ul li:last-child {
    border-bottom: none;
}

.service-out ul li::before {
    content: '✓';
    margin-right: 10px;
    font-weight: bold;
    color: #6a11cb;
}

.service-out .badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #C7A68A;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 5px;
    text-transform: uppercase;
}

.service-out .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6a11cb;
    margin-bottom: 10px;
}

/* Consultation Section */
.consultation-info {
    background: linear-gradient(to right, #eef2ff, #dbeafe);
    padding: 24px 0;
}

.consultation-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 640px) {
    .consultation-note {
        flex-direction: row;
    }
}

.consultation-text {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Payment Info */
.payment-info {
    background-color: white;
}

.container-checkout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.payment-card {
    background: linear-gradient(to right, #eff6ff, #eef2ff);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #bfdbfe;
    position: relative;
    overflow: hidden;
}

.payment-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-icon-container {
    background-color: white;
    padding: 12px;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    color: #6a11cb;
}

.payment-icon svg {
    width: 32px;
    height: 32px;
}

.payment-text {
    color: #334155;
    font-weight: 500;
}

/* Booking Form Section */
.booking-form-section {
    padding: 3rem;
    background-color: #f1f5f9;

}

.booking-form-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: white;
    clip-path: ellipse(60% 80px at 50% 80px);
}

.booking-form-section h2 {
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid input[type="datetime-local"],
.form-grid select,
.form-grid textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.15);
}

.form-grid textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: vertical;
}

.form-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
    grid-column: span 2;
}

.form-grid label a {
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Checkbox specific styling */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.25rem;
    cursor: pointer;
    appearance: none;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #3a7bd5;
    border-color: #3a7bd5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input[type="checkbox"]:focus {
    outline: none;
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.15);
}

input[type="checkbox"].is-invalid {
    border-color: #EF4444;
}

input[type="checkbox"].is-valid {
    border-color: #10B981;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}




.btn-checkout {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    will-change: transform, box-shadow;
}

.btn-checkout {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.2);
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 123, 213, 0.3);
}

.btn-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-checkout:hover::before {
    left: 100%;
}

.booking-form .btn-checkout {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Loading button animation */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    margin-right: 6px;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

/* Confirmation Message */
.confirmation-message {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #F0FDF4;
    border: 1px solid #10B981;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.confirmation-message h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.confirmation-message p {
    margin-bottom: 1rem;
    color: #374151;
}

.confirmation-message #jobId {
    font-weight: 700;
    color: #1F2937;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.confirmation-message ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.confirmation-message ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3a7bd5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.confirmation-message ul li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #00d2ff;
}



.back-link {
    color: #007bff;
    position: relative;
    top: 15px;
    text-decoration: underline;
    cursor: pointer;

}

.back-link:hover {
    color: #0056b3;

    text-decoration: underline;

}

.back-link:active {
    color: #004085;

}

/* Flatpickr styles */
/* Flatpickr input placeholder styling */
input.flatpickr-input::placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

/* iOS Safari and legacy browser support */
input.flatpickr-input:-ms-input-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input.flatpickr-input::-webkit-input-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input.flatpickr-input::-moz-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input.flatpickr-input:-moz-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

/* Flatpickr base input */
.flatpickr-input {
    width: 100%;
    padding: 8px 10px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
    background-color: #fff;
    /* Ensure it's white */
    color: #111;
}

/* Focus style */
.flatpickr-input:focus {
    border-color: #6a11cb;
    box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.1);
}

/* Calendar popup styling */
.flatpickr-calendar {
    font-size: 13px;
    max-width: 260px;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #ccc;
}

.flatpickr-day {
    padding: 5px 6px;
    border-radius: 4px;
}

.flatpickr-day:hover {
    background: #f0f0f0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #6a11cb;
    color: #fff;
}

.flatpickr-day.today {
    border: 1px solid #6a11cb;
}

.flatpickr-months .flatpickr-month {
    font-size: 0.9rem;
    height: 28px;
}

.flatpickr-weekday {
    font-size: 0.75rem;
    color: #999;
}

/* Responsive styles checkout.html */
@media (max-width: 768px) {
    .booking-form-section {
        padding: 2rem 0 3rem;
    }

    .booking-form-section::before {
        top: -50px;
        height: 50px;
        clip-path: ellipse(80% 50px at 50% 50px);
    }

    .booking-form-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
        border-radius: 0.75rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .form-grid {
        grid-template-columns: 1fr;
        /* Single column for mobile */
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-grid input[type="text"],
    .form-grid input[type="email"],
    .form-grid input[type="tel"],
    .form-grid select,
    .form-grid textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
        border-radius: 0.4rem;
    }



    .form-grid textarea {
        grid-column: span 1;
        /* Override desktop span */
        min-height: 100px;
    }

    .form-grid label {
        grid-column: span 1;
        /* Override desktop span */
        font-size: 0.9rem;
    }



    .btn-checkout {
        padding: 0.85rem 2rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .form-status {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }

    .confirmation-message {
        margin: 1.5rem 1rem;
        padding: 1.5rem;
        border-radius: 0.5rem;
    }

    .confirmation-message h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .confirmation-message p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .confirmation-message ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .confirmation-message ul li a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }



    /* Flatpickr responsive styles */
    .flatpickr-input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
        border-radius: 0.4rem;
        appearance: none;
        -webkit-appearance: none;
        background-color: white;
        color: #111;
        width: 100%;
    }

    /* Ensure placeholder is visible on all browsers */
    .flatpickr-input::placeholder {
        color: #6b7280;
        opacity: 1;
    }

    .flatpickr-input:-ms-input-placeholder {
        color: #6b7280;
        opacity: 1;
    }

    .flatpickr-input::-webkit-input-placeholder {
        color: #6b7280;
        opacity: 1;
    }

    .flatpickr-input::-moz-placeholder {
        color: #6b7280;
        opacity: 1;
    }

    .flatpickr-input:-moz-placeholder {
        color: #6b7280;
        opacity: 1;
    }

    .flatpickr-calendar {
        font-size: 12px;
        width: 90vw;
        max-width: 300px;
        padding: 3px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .flatpickr-day {
        padding: 4px 5px;
        font-size: 0.8rem;
    }

    .flatpickr-months .flatpickr-month {
        font-size: 0.85rem;
        height: 26px;
    }

    .flatpickr-weekday {
        font-size: 0.7rem;
    }

    .flatpickr-time input {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}