:root {
    /* Logo Colours: White + Sky Blue */
    --primary: #1B4D9E;
    --primary-light: #8BBDE0;
    --sky: #8BBDE0;
    --sky-dark: #5A9BC7;
    --primary-gradient: linear-gradient(135deg, #1B4D9E, #5A9BC7);
    --sky-gradient: linear-gradient(135deg, #8BBDE0, #5A9BC7);

    /* Light Theme Backgrounds */
    --bg: #FFFFFF;
    --bg-soft: #F0F7FC;
    --bg-section: #F7FBFE;
    --card-bg: #FFFFFF;
    --card-border: rgba(139, 189, 224, 0.25);

    /* Text */
    --text-dark: #1A2A3A;
    --text-body: #4A5E73;
    --text-muted: #7A8FA3;

    /* General */
    --border: rgba(139, 189, 224, 0.2);
    --font-family: 'Outfit', sans-serif;
    --shadow-sm: 0 2px 8px rgba(27, 77, 158, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 77, 158, 0.08);
    --shadow-lg: 0 10px 40px rgba(27, 77, 158, 0.1);
    --shadow-glow: 0 4px 20px rgba(139, 189, 224, 0.35);
    --radius: 14px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #1B4D9E, #8BBDE0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-body);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-family);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27, 77, 158, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--sky);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--sky);
    color: white;
    border-color: var(--sky);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-img {
    height: 58px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
    transition: var(--transition);
    clip-path: inset(2px 0 0 0);
    margin-top: -2px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    color: var(--text-body);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--sky);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
}

.mobile-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 100px 40px 40px;
        transition: var(--transition);
        gap: 20px;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-btn {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(160deg, #FFFFFF 0%, #E8F4FD 40%, #D4ECFB 70%, #C0E2F7 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(139, 189, 224, 0.2) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.badge-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    border: 1px solid var(--sky);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--text-body);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #FFFFFF 0%, #E8F4FD 50%, #D4ECFB 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 110px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .stats {
        gap: 12px;
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        padding-top: 24px;
    }

    .stat-item {
        align-items: center;
        background: white;
        padding: 16px 8px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(27, 77, 158, 0.08);
        border: 1px solid rgba(139, 189, 224, 0.2);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .page-hero {
        padding: 120px 0 50px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES ===== */
.services {
    background: var(--bg-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: white;
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sky-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--sky-gradient);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 18px;
    padding: 8px 22px;
    background: var(--bg-soft);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--border);
}

.service-price small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1;
    margin-bottom: 2px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews {
    background: var(--bg-soft);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    padding: 0 50px;
}

.reviews-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    gap: 24px;
}

.reviews-track.dragging {
    transition: none;
    cursor: grabbing;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 35px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    user-select: none;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    line-height: 1;
    background: linear-gradient(135deg, #1B4D9E, #8BBDE0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review-stars i {
    color: #F59E0B;
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 25px;
    font-style: italic;
    min-height: 100px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.review-service {
    font-size: 0.85rem;
    color: white;
    background: var(--sky);
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-top: 4px;
    width: fit-content;
}

/* Reviews Navigation Arrows */
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--card-border);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.reviews-arrow:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.reviews-arrow-left {
    left: -5px;
}

.reviews-arrow-right {
    right: -5px;
}

/* Reviews Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.reviews-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(27, 77, 158, 0.4);
}

.reviews-dot:hover:not(.active) {
    background: var(--sky);
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }

    .reviews-carousel {
        padding: 0 45px;
    }
}

@media (max-width: 640px) {
    .review-card {
        flex: 0 0 100%;
    }

    .reviews-carousel {
        padding: 0 40px;
    }

    .reviews-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .reviews-arrow-left {
        left: -2px;
    }

    .reviews-arrow-right {
        right: -2px;
    }

    .review-text {
        min-height: auto;
    }
}

/* ===== RESULTS PREVIEW ===== */
.results-preview {
    background: white;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.preview-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

@media (max-width: 500px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESULTS PAGE ===== */
.results-page {
    background: var(--bg-soft);
}

.result-card {
    background: white;
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.result-card:hover {
    border-color: var(--sky);
    box-shadow: var(--shadow-lg);
}

.result-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.result-badge.accent {
    background: var(--sky-gradient);
}

.ba-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Before/After Split Layout */
.ba-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-side {
    position: relative;
    overflow: hidden;
}

.ba-side img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.ba-side:hover img {
    transform: scale(1.03);
}

.ba-label {
    position: absolute;
    top: 16px;
    z-index: 3;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ba-before {
    left: 16px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
}

.ba-after {
    right: 16px;
    left: auto;
    background: linear-gradient(135deg, #27AE60, #1E8449);
}

@media (max-width: 600px) {
    .ba-side img {
        height: 200px;
    }

    .ba-image-wrapper img {
        height: 250px;
    }
}

.result-info {
    padding: 30px;
}

.result-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.result-info p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.result-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.result-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-meta span i {
    color: var(--sky-dark);
}

@media (max-width: 600px) {
    .ba-image-wrapper img {
        height: 250px;
    }
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
    background: var(--bg-soft);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--text-body);
    border: 1.5px solid var(--border);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sky);
    color: white;
    border-color: var(--sky);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    background: var(--sky);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    color: white;
}

@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--sky);
    transform: rotate(90deg);
}

/* ===== PRICING PAGE ===== */
.pricing-page {
    background: var(--bg-soft);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1.5px solid var(--card-border);
    border-radius: 18px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--sky);
    border-width: 2px;
    background: linear-gradient(180deg, #F0F8FF, white);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(139, 189, 224, 0.25);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--sky);
    color: white;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 0 18px 0 14px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sky-dark);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.plan-starting-from {
    display: block;
    margin-top: 14px;
    padding: 5px 18px;
    background: linear-gradient(135deg, rgba(139, 189, 224, 0.15), rgba(27, 77, 158, 0.1));
    color: var(--sky-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(139, 189, 224, 0.3);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card.popular .plan-starting-from {
    background: linear-gradient(135deg, rgba(139, 189, 224, 0.25), rgba(27, 77, 158, 0.15));
    border-color: rgba(139, 189, 224, 0.5);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    font-size: 0.95rem;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 189, 224, 0.1);
    font-size: 0.95rem;
    color: var(--text-body);
}

.plan-features li i {
    font-size: 0.8rem;
}

.plan-features li .fa-check {
    color: var(--sky-dark);
}

.plan-features li .fa-times {
    color: #CBD5E1;
}

.plan-features li.disabled {
    color: #CBD5E1;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

/* ===== ENQUIRY FORM ===== */
.enquiry-section {
    background: white;
}

.enquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: white;
    border: 1.5px solid var(--border);
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--text-dark);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0B4C8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(139, 189, 224, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .enquiry-form {
        padding: 25px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: var(--bg-soft);
}

.cta-container {
    background: linear-gradient(135deg, #1B4D9E, #5A9BC7);
    border-radius: 22px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #1A2A3A;
    padding: 60px 0 30px;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.footer-brand p {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-col h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
}

.footer-links-col a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links-col a:hover {
    color: var(--sky);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact p i {
    color: var(--sky);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--sky);
}

.footer-contact-link i {
    color: var(--sky);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border-color: transparent;
}

.social-icon[aria-label="Facebook"]:hover {
    background: #1877F2;
    color: white;
    border-color: transparent;
}

.social-icon[aria-label="WhatsApp"]:hover {
    background: #25D366;
    color: white;
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-ring 2s infinite;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #1EBE5D;
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-call 2s infinite;
    box-shadow: 0 4px 15px rgba(27, 77, 158, 0.4);
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 77, 158, 0.6);
    background: linear-gradient(135deg, #154080, #4A8AB5);
    animation: none;
}

.call-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.call-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.floating-call:hover .call-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-10px);
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 77, 158, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(27, 77, 158, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(27, 77, 158, 0);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: fadeInUp 0.8s backwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
}

.hero-actions {
    animation-delay: 0.6s;
}

.hero .stats {
    animation-delay: 0.8s;
}