/* Import Fonts - Matching ND Consulting */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200;12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&display=swap');

/* Import Telegraf Font */
@import url('https://fonts.cdnfonts.com/css/telegraf');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0356A3;
    --secondary-color: #1a73e8;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Telegraf', 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography - Matching ND Consulting */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
    letter-spacing: -1px;
}

h1, h2 {
    font-weight: 400;
    letter-spacing: -1px;
}

h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: -0.5px;
}

p, li, a, span, button, input, textarea, label {
    font-family: 'Telegraf', 'Bricolage Grotesque', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px rgba(31, 38, 135, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 50px;
    width: auto;
    position: relative;
    z-index: 10;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 90px 0 2px;
    background: transparent;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    margin-bottom: -25%;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Telegraf', 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.hero-image img {
    width: 180%;
    height: auto;
    border-radius: 1px;
    max-width: none;
    transform: translateX(-100px);
    filter: saturate(0.8) brightness(1.05) contrast(1.1);
    transition: filter 0.3s ease;
}

.hero-image img:hover {
    filter: saturate(1) brightness(1) contrast(1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-family: 'Telegraf', 'Bricolage Grotesque', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #024a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 86, 163, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Introduction Section */
.intro-section {
    padding: 100px 0 80px;
    background: linear-gradient(to right, #024a8a, #0356A3, #1a73e8);
    position: sticky;
    top: 0;
    overflow: hidden;
    min-height: 400px;
    margin-top: 0;
    z-index: 1;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('../world.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.intro-content {
    position: relative;
    z-index: 1;
}

.intro-text {
    font-size: 32px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    color: var(--white);
    line-height: 1.4;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
}

.intro-cta {
    text-align: center;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Services Overview */
.services-overview {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    margin-top: 0;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.services-overview .animated-bg-container {
    top: 0;
    height: 100%;
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    letter-spacing: -1px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    justify-items: stretch;
    position: relative;
    z-index: 1;
}

/* Services grid — 3 columns, full rows auto-placed */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Last row — flex so 1 or 2 orphan cards center naturally */
.services-grid-last-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.services-grid-last-row .service-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.service-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    min-height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 86, 163, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    stroke: var(--white);
    fill: none;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Telegraf', 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.service-card-cta {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.service-card-cta .service-icon {
    background: var(--white) !important;
}

.service-card-cta .service-icon svg {
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
}

.service-card-cta h3 {
    color: var(--white) !important;
}

.service-card-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-card-cta:hover {
    background: #024a8a !important;
}

.service-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Module Expertise */
.module-expertise {
    padding: 80px 0;
    background: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.module-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.module-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    padding: 10px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 25px;
}

.module-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Section */
.why-section {
    padding: 120px 0 80px;
    background-image: url('../binarybg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: -65px;
    z-index: 10;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.why-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 0;
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-section .section-title {
    color: #ffffff !important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.why-card:hover::before {
    left: 100%;
}

/* Outer box: gradient square, centered inside the card column */
.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.35);
    flex-shrink: 0;
}

/* Inner wrapper: second flex layer — centers the SVG drawing itself */
.why-icon .icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

/* SVG: all Lucide icons share viewBox="0 0 24 24" — normalized size + stroke */
.why-icon .icon-inner svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    color: #ffffff;
    fill: none;
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff !important;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
}

.why-card p {
    color: #ffffff !important;
    line-height: 1.6;
}

/* Accessibility / SEO utility — visually hidden but readable by screen readers & crawlers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.clients-section .section-title {
    color: var(--text-dark);
}

.clientsSwiper {
    padding: 40px 0;
    overflow: visible;
}

.clientsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, #024a8a, #0356A3, #1a73e8);
    color: var(--white);
    position: relative;
    z-index: 10;
}

.cta-section .container {
    position: relative;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.cta-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.cta-content {
    text-align: left;
    padding-right: 30px;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-family: 'Telegraf', 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
}

.cta-image {
    padding-left: 30px;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Let's Talk CTA Section */
.lets-talk-cta {
    background: linear-gradient(135deg, #0356A3 0%, #024a8a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

.lets-talk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lets-talk-text {
    color: var(--white);
}

.lets-talk-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.lets-talk-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.lets-talk-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lets-talk-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    z-index: 20;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 10px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero-image {
        margin-bottom: -8%;
    }

    .hero-image img {
        width: 140%;
        transform: translateX(-80px);
    }

    .intro-text {
        font-size: 28px;
    }

    .cta-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        padding: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--bg-light);
    }

    .hero {
        padding: 100px 0 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image {
        display: none; /* Hide on tablet */
    }

    .intro-section {
        padding: 80px 0 60px;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        margin-top: 0;
    }

    .intro-text {
        font-size: 24px;
        padding: 0 10px;
    }

    .services-overview {
        padding: 80px 0 100px;
        margin-top: 40px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: stretch;
    }

    .services-grid-last-row {
        gap: 15px;
    }

    .services-grid-last-row .service-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .service-card,
    .why-card {
        padding: 25px 15px;
        max-width: 100%;
        width: 100%;
    }

    .service-card h3,
    .why-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card p,
    .why-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .service-icon,
    .why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .service-icon svg,
    .why-icon svg,
    .why-icon i {
        width: 26px;
        height: 26px;
    }

    .service-card-cta {
        order: 6;
        width: 100%;
    }

    .why-section {
        padding: 100px 0 60px;
        clip-path: none;
        margin-top: -30px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-grid::before {
        display: none;
    }

    .cta-content {
        text-align: center;
        padding-right: 0;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-image {
        padding-left: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lets-talk-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lets-talk-text h2 {
        font-size: 36px;
    }

    .lets-talk-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-image {
        display: none; /* Hide on mobile */
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .intro-section {
        padding: 60px 0 50px;
        min-height: 300px;
    }

    .intro-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .services-overview {
        padding: 60px 0 80px;
        margin-top: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: stretch;
    }

    /* Reset grid positioning for mobile */
    .services-grid-last-row .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service-card,
    .why-card {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
    }

    .service-card h3,
    .why-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-card p,
    .why-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .service-icon,
    .why-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .service-icon svg,
    .why-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card-cta {
        padding: 25px 15px;
        width: 100%;
    }

    .service-card-cta h3 {
        font-size: 16px;
    }

    .service-card-cta p {
        font-size: 13px;
    }

    .why-section {
        padding: 80px 0 50px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .clientsSwiper {
        padding: 30px 0;
    }

    .swiper-slide img {
        max-width: 120px;
    }

    .lets-talk-cta {
        padding: 60px 0;
    }

    .lets-talk-text h2 {
        font-size: 28px;
    }

    .lets-talk-text p {
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 22px;
    }

    .intro-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .services-grid {
        gap: 10px;
        justify-items: stretch;
    }

    .service-card,
    .why-card {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }

    .service-card h3,
    .why-card h3 {
        font-size: 15px;
    }

    .service-card p,
    .why-card p {
        font-size: 12px;
    }

    .service-icon,
    .why-icon {
        width: 40px;
        height: 40px;
    }

    .service-icon svg,
    .why-icon svg {
        width: 20px;
        height: 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }
}



/* ============================================
   WORDPRESS BOOKING FORM STYLES (Bookly)
   ============================================ */

/* Booking Form Container */
.bookly-booking-wrapper {
    margin-top: 20px;
}

.booking-placeholder {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    text-align: center;
    line-height: 1.8;
}

.booking-placeholder strong {
    color: var(--primary-color);
}

/* Bookly Form Styling */
.bookly-form {
    max-width: 100%;
    margin: 0 auto;
}

.bookly-form .bookly-btn,
.bookly-form button[type="submit"] {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 4px !important;
    padding: 12px 30px !important;
    font-family: 'Telegraf', sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.bookly-form .bookly-btn:hover,
.bookly-form button[type="submit"]:hover {
    background-color: #024a8a !important;
    border-color: #024a8a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 86, 163, 0.3) !important;
}

.bookly-form .bookly-label,
.bookly-form label {
    font-family: 'Telegraf', sans-serif !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.bookly-form input,
.bookly-form select,
.bookly-form textarea {
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    font-family: 'Telegraf', sans-serif !important;
    padding: 12px !important;
    width: 100% !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.bookly-form input:focus,
.bookly-form select:focus,
.bookly-form textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(3, 86, 163, 0.1) !important;
    outline: none !important;
}

/* Time Slot Selection */
.bookly-form .bookly-time-slot {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 10px !important;
    margin: 5px !important;
    transition: all 0.3s ease !important;
}

.bookly-form .bookly-time-slot:hover {
    border-color: var(--primary-color) !important;
    background-color: rgba(3, 86, 163, 0.05) !important;
}

.bookly-form .bookly-time-slot.selected {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* Calendar Styling */
.bookly-form .bookly-calendar {
    border-radius: 4px !important;
    overflow: hidden !important;
}

.bookly-form .bookly-calendar .bookly-day.bookly-available:hover {
    background-color: rgba(3, 86, 163, 0.1) !important;
}

.bookly-form .bookly-calendar .bookly-day.bookly-selected {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Progress Steps */
.bookly-form .bookly-progress-tracker {
    margin-bottom: 30px !important;
}

.bookly-form .bookly-progress-tracker .bookly-step.active {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

/* Confirmation Message */
.bookly-form .bookly-success-message {
    background-color: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    color: #155724 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    margin: 20px 0 !important;
}

/* Error Message */
.bookly-form .bookly-error-message {
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
    color: #721c24 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    margin: 20px 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bookly-form .bookly-btn,
    .bookly-form button[type="submit"] {
        width: 100% !important;
        padding: 14px 20px !important;
    }
    
    .bookly-form .bookly-time-slot {
        width: 100% !important;
        margin: 5px 0 !important;
    }
}

/* Loading Spinner */
.bookly-form .bookly-loading {
    border: 3px solid #f3f3f3 !important;
    border-top: 3px solid var(--primary-color) !important;
    border-radius: 50% !important;
}

/* Custom Field Styling */
.bookly-form .bookly-custom-field {
    margin-bottom: 20px !important;
}

.bookly-form .bookly-custom-field input[type="checkbox"],
.bookly-form .bookly-custom-field input[type="radio"] {
    width: auto !important;
    margin-right: 8px !important;
}

/* Service Selection */
.bookly-form .bookly-service-item {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.bookly-form .bookly-service-item:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 2px 8px rgba(3, 86, 163, 0.1) !important;
}

.bookly-form .bookly-service-item.selected {
    border-color: var(--primary-color) !important;
    background-color: rgba(3, 86, 163, 0.05) !important;
}
