/* ===== GLOBAL RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a6e7a;
    --primary-dark: #144f58;
    --primary-light: #2a8f9d;
    --secondary: #0d3b42;
    --accent: #25d366;
    --white: #ffffff;
    --light-bg: #f0f8f9;
    --card-bg: #ffffff;
    --text-dark: #1a2a2e;
    --text-body: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2.2rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 110, 122, 0.4);
}

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

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

.btn-whatsapp {
    background: #1da851;
    color: var(--white);
    padding: 7px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::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: left 0.5s ease;
}

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

.btn-whatsapp i {
    font-size: 1.15rem;
}

.btn-whatsapp:hover {
    background: #178f44;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 7px 0;
    font-size: 0.9rem;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right a:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* ===== HEADER / NAVBAR ===== */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: -40px;
}

@media (max-width: 992px) {
    .logo {
        margin-left: 0;
    }
}

.logo img {
    height: 104px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
}

.logo-text span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-text span:first-of-type {
    font-size: 0.75rem;
    color: var(--text-dark);
    letter-spacing: 1.5px;
}

.logo-text span:nth-of-type(2),
.logo-text span:nth-of-type(3) {
    font-size: 0.6rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: 2px;
}

.logo-text span:nth-of-type(3) {
    margin-top: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 40px;
}

.nav-menu a {
    padding: 7px 8px;
    color: #333;
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: #e0f0f2;
}

/* ===== MEGA DROPDOWN (Treatments) ===== */
/* ===== NAV DROPDOWN (Gallery) ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a::after {
    content: "";
    border: solid #444;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 2px;
    transition: 0.3s;
}

.nav-dropdown:hover > a::after {
    border-color: var(--primary);
    transform: rotate(-135deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    background: var(--light-bg) !important;
    color: var(--primary) !important;
}

.nav-dropdown-menu a i {
    font-size: 0.9rem;
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* Nested Sub-Dropdown */
.nav-sub-dropdown {
    position: relative;
}

.nav-cat-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
}

.nav-sub-dropdown > a {
    justify-content: flex-start;
}

.nav-sub-dropdown > a .sub-arrow {
    margin-left: auto;
    font-size: 0.65rem;
    color: #999;
    width: auto;
    transition: 0.2s;
}

.nav-sub-dropdown:hover > a .sub-arrow {
    color: var(--primary);
}

.nav-sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-sub-dropdown:hover > .nav-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-sub-menu a {
    display: block;
    padding: 9px 20px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-sub-menu a:hover {
    background: var(--light-bg) !important;
    color: var(--primary) !important;
    padding-left: 24px !important;
}

.mega-dropdown {
    position: static;
}

.mega-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mega-dropdown > a::after {
    content: "";
    border: solid var(--text-dark);
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: var(--transition);
    margin-top: -3px;
}

.mega-dropdown:hover > a::after {
    border-color: var(--primary);
    transform: rotate(-135deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--primary);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 25px;
}

.mega-col {
    padding: 0 15px;
    border-right: 1px solid var(--border);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-col h4 i {
    font-size: 1rem;
    color: var(--primary);
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 2px;
}

.mega-col ul li a {
    display: block;
    padding: 7px 10px;
    font-size: 0.88rem;
    color: var(--text-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mega-col ul li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 15px;
}

/* Old simple dropdown (kept for reuse if needed) */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE FORM SECTION ===== */
.mobile-form-section {
    display: none;
    padding: 30px 0;
    background: var(--light-bg);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--primary) 100%
    );
    overflow: hidden;
}

.social-sticky {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 999;
}

.social-sticky a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    padding-left: 12px;
}

.social-sticky a span {
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-sticky a:nth-child(1) {
    background: #1877f2;
}

.social-sticky a:nth-child(2) {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.social-sticky a:nth-child(3) {
    background: #ff0000;
}

.social-sticky a:nth-child(4) {
    background: #0a66c2;
}

.social-sticky a:hover {
    width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-sticky a:hover span {
    opacity: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 30%, rgba(109, 213, 237, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(13, 59, 66, 0.55) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(
            circle at 30% 50%,
            rgba(109, 213, 237, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 80%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 40%
        );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(3%, -3%);
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 50px;
}

.hero-content {
    flex: 1 1 0;
    min-width: 0;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-content h1 span {
    color: #6dd5ed;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 380px;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-form {
    flex: 0 0 380px;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

/* Hero Doctor Image (Premium) */
.hero-image {
    flex: 0 0 340px;
    position: relative;
    animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    aspect-ratio: 4 / 5.5;
    background: linear-gradient(135deg, rgba(109, 213, 237, 0.25), rgba(13, 59, 66, 0.4));
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.hero-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(13, 59, 66, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.hero-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-form-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.hero-form-card h3 i {
    margin-right: 6px;
}

.hero-form-card > p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.hero-form-success {
    background: #ecfdf5;
    color: #065f46;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-form-success i {
    margin-right: 5px;
    color: #10b981;
}

.hero-form-group {
    margin-bottom: 12px;
}

.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #e8edf2;
    transition: all 0.3s ease;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 110, 122, 0.1);
    background: var(--white);
}

.hero-form-group input::placeholder {
    color: #6b7a8d;
}

.hero-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-form-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.hero-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 110, 122, 0.4);
}

.hero-form-btn i {
    margin-right: 6px;
}

.hero-icon-box p {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about .container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: sticky;
    top: 100px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    flex: 1;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title h2::after {
    left: 0;
    transform: none;
}

.about-content .section-title {
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-specialties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
}

.about-specialties li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-specialties li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.about-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 20px;
    font-style: italic;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card .learn-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card:hover .learn-more {
    gap: 10px;
}

/* Image Cards for Specializations */
.service-card.img-card {
    padding: 0;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card.img-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 20px 25px 25px;
}

.service-card-body h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--primary) 100%
    );
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #6dd5ed;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ===== SERVICE DETAIL PAGE ===== */
.page-hero {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--primary) 100%
    );
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.service-detail {
    padding: 80px 0;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    color: var(--primary);
    margin: 40px 0 15px;
    font-size: 1.6rem;
}

.service-detail-content h3 {
    color: var(--primary-dark);
    margin: 30px 0 12px;
    font-size: 1.3rem;
}

.service-detail-content p {
    margin-bottom: 15px;
    line-height: 1.9;
}

.service-detail-content ul {
    margin: 10px 0 15px 0;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 4px 0 4px 30px;
    position: relative;
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.85rem;
}

.service-sidebar {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 30px;
    margin-top: 40px;
}

.service-sidebar h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.service-sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

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

.service-sidebar ul li a {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-sidebar ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.service-sidebar ul li a i {
    color: var(--primary);
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
    padding: 60px 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.whatsapp-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.whatsapp-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.whatsapp-cta .btn {
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    padding: 10px 28px;
    font-size: 0.95rem;
}

.whatsapp-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-viewport {
    flex: 1;
    overflow: hidden;
    padding-top: 20px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding-bottom: 10px;
}

.testimonial-card-premium {
    min-width: calc(33.333% - 17px);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 25px 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.testimonial-card-premium:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.testimonial-quote-icon i {
    color: var(--white);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.92rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
    z-index: 2;
}

.testimonial-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

@media (max-width: 1024px) {
    .testimonial-card-premium {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .testimonial-card-premium {
        min-width: calc(100% - 0px);
        padding: 35px 20px 25px;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-body);
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 110, 122, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== HOME GALLERY ===== */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.05);
}

.home-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 25px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-gallery-item:hover .home-gallery-overlay {
    opacity: 1;
}

.home-gallery-overlay h4 {
    color: var(--white);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-gallery-item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .home-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.video-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
}

.video-empty-state i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.6;
}

.video-empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.video-empty-state p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== TOAST ===== */
.toast-msg {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 400px;
}

.toast-msg.toast-show {
    transform: translateX(0);
}

.toast-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.toast-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

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

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:nth-child(1) {
    background: #1877f2;
}

.footer-social a:nth-child(2) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a:nth-child(3) {
    background: #ff0000;
}

.footer-social a:nth-child(4) {
    background: #0a66c2;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary-light);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== HERO FORM SOCIALS ===== */
.hero-form-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 0;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.hero-form-socials--mobile {
    background: linear-gradient(135deg, rgba(13, 59, 66, 0.82), rgba(20, 90, 100, 0.75));
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(13, 59, 66, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 18px;
}

.hero-form-socials--mobile a {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.hero-form-socials--mobile a:nth-child(1) {
    display: none;
}

.hero-form-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-form-socials a:nth-child(1) { background: #25d366; }
.hero-form-socials a:nth-child(2) { background: #1877f2; }
.hero-form-socials a:nth-child(3) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.hero-form-socials a:nth-child(4) { background: #ff0000; }
.hero-form-socials a:nth-child(5) { background: #0a66c2; }

.hero-form-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-visual-circle {
        width: 300px;
        height: 300px;
    }

    .about .container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
        top: auto;
    }

    .about-image-wrapper div {
        height: 320px !important;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .mega-menu-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }

    .logo img {
        height: 80px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo-text span:first-of-type {
        font-size: 0.6rem;
    }

    .logo-text span:last-of-type {
        font-size: 0.5rem;
    }

    .top-bar {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
        margin-left: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 15px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Mobile Mega Menu */
    .mega-dropdown {
        position: relative;
        width: 100%;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        width: 100%;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        padding: 10px 0;
        gap: 0;
    }

    .mega-col {
        padding: 5px 15px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .mega-col:last-child {
        border-bottom: none;
    }

    .mega-col h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
        padding-bottom: 5px;
        cursor: pointer;
    }

    .mega-col ul {
        display: none;
    }

    .mega-col.active ul {
        display: block;
    }

    .menu-toggle {
        display: flex;
        margin-left: 15px;
    }

    .header-cta .btn-whatsapp {
        display: none;
    }

    .social-sticky {
        display: none;
    }

    /* Mobile Nav Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        width: 100%;
        padding: 12px 15px;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        padding-left: 15px;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-sub-dropdown {
        width: 100%;
    }

    .nav-sub-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
        padding-left: 15px;
    }

    .nav-sub-dropdown.active > .nav-sub-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 25px 0 30px;
        align-items: center;
    }

    .hero::before {
        left: 0;
        width: 100%;
        background:
            radial-gradient(circle at 0% 50%, rgba(13, 59, 66, 0.55) 0%, transparent 65%);
    }

    .hero .container {
        flex-direction: row;
        padding: 0 18px;
        gap: 18px;
        align-items: center;
    }

    .hero-content {
        flex: 1 1 0;
        min-width: 0;
        text-align: left;
    }

    .hero-image {
        flex: 0 0 145px;
        max-width: 145px;
        margin: 0;
    }

    .hero-image-wrapper {
        border-radius: 16px;
        aspect-ratio: auto;
        background: transparent;
    }

    .hero-image-wrapper::before {
        border-radius: 16px;
        padding: 1.5px;
    }

    .hero-image-wrapper img {
        height: auto;
        object-fit: initial;
    }

    .hero-content h1 {
        font-size: 1.05rem;
        margin-bottom: 10px;
        letter-spacing: 0.8px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.7rem;
        margin-bottom: 12px;
        line-height: 1.5;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        padding: 6px 16px;
        font-size: 0.65rem;
    }

    .hero-form {
        display: none;
    }

    .mobile-form-section {
        display: block;
    }

    .about-specialties {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid .footer-about,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 1.3rem;
    }

    .page-hero .breadcrumb {
        font-size: 0.8rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .service-detail {
        padding: 30px 0 60px;
    }

    .service-detail-content h2 {
        margin: 25px 0 12px;
        font-size: 1.3rem;
    }
}

@media (max-width: 675px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card {
        padding: 18px 12px;
    }

    .service-card.img-card {
        padding: 0;
    }

    .service-card-img {
        height: 120px;
    }

    .service-card-body {
        padding: 12px 12px 15px;
    }

    .service-card-body h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .service-card-body p {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon i {
        font-size: 1.4rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 0.72rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 0.95rem;
    }

    .hero-content p {
        font-size: 0.65rem;
        line-height: 1.45;
    }

    .hero-buttons {
        align-items: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        right: 85px;
        bottom: 20px;
    }

    .service-card p {
        font-size: 0.72rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .learn-more {
        font-size: 0.75rem;
    }
}

/* ===== MOBILE NAV OVERLAY ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== LOADING ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section reveal animations */
.section-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside sections */
.section-reveal.visible .stagger-child {
    opacity: 1;
    transform: translateY(0);
}

.stagger-child {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.stagger-child:nth-child(1) {
    transition-delay: 0.1s;
}
.stagger-child:nth-child(2) {
    transition-delay: 0.2s;
}
.stagger-child:nth-child(3) {
    transition-delay: 0.3s;
}
.stagger-child:nth-child(4) {
    transition-delay: 0.4s;
}
.stagger-child:nth-child(5) {
    transition-delay: 0.5s;
}
.stagger-child:nth-child(6) {
    transition-delay: 0.6s;
}
.stagger-child:nth-child(7) {
    transition-delay: 0.7s;
}
.stagger-child:nth-child(8) {
    transition-delay: 0.8s;
}
.stagger-child:nth-child(9) {
    transition-delay: 0.9s;
}
.stagger-child:nth-child(10) {
    transition-delay: 1s;
}
.stagger-child:nth-child(11) {
    transition-delay: 1.1s;
}
.stagger-child:nth-child(12) {
    transition-delay: 1.2s;
}

/* Section title reveal */
.section-reveal.visible .section-title {
    opacity: 1;
    transform: translateY(0);
}

.section-reveal .section-title {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* ===== SERVICE DETAIL IMAGES ===== */
.service-images {
    margin: 20px 0;
}

.service-img-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #f0f7f8;
}

.service-img-box img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    background: #fff;
}

/* Single image - left image, right content row */
.service-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin: 5px 0 20px;
}

.service-section-row-reverse {
    direction: ltr;
}
.service-section-row-reverse .service-section-text {
    order: -1;
}

.service-section-row .service-img-box img {
    max-height: 350px;
}

.service-section-text p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.service-section-text ul {
    margin: 10px 0;
    padding-left: 0;
}

.service-section-text ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1.7;
}

.service-section-text ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Two images side by side */
.service-images-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-images-2 .service-img-box img {
    height: 280px;
    object-fit: contain;
}

/* Three+ images grid */
.service-images-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-images-3 .service-img-box img {
    height: 240px;
    object-fit: contain;
}

/* Placeholder */
.service-img-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f0f7f8 0%, #e2eff1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 2px dashed #c5dde1;
    color: #5a8a91;
}

.service-img-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.service-img-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
}

.service-img-placeholder small {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Mobile - stack all images vertically */
@media (max-width: 768px) {
    .service-section-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-images-2,
    .service-images-3 {
        grid-template-columns: 1fr;
    }

    .service-images-2 .service-img-box img,
    .service-images-3 .service-img-box img {
        height: auto;
        max-height: 300px;
    }
}

/* ===== FAQ ACCORDION ===== */
.service-faq {
    margin-top: 50px;
}

.service-faq > h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.service-faq > h2 i {
    margin-right: 10px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(26, 110, 122, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 15px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-item.active .faq-question {
    background: var(--light-bg);
    color: var(--primary);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
    padding: 0 22px;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px 18px;
        font-size: 0.92rem;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 16px;
    }

    .service-faq > h2 {
        font-size: 1.3rem;
    }
}
