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

/* --- CSS VARIABLES & THEME --- */
:root {
    /* Colors */
    --primary: #075985;          /* Sky 800 */
    --primary-light: #0284c7;    /* Sky 600 */
    --secondary: #0ea5e9;        /* Sky 500 */
    --accent: #0284c7;           /* Sky 600 */
    --accent-hover: #0369a1;     /* Sky 700 */
    --accent-light: #f0f9ff;     /* Sky 50 */
    --gold: #38bdf8;             /* Sky 400 (replaces gold accent) */
    --gold-hover: #0ea5e9;       /* Sky 500 */
    --gold-light: #e0f2fe;       /* Sky 100 */
    --gold-gradient: linear-gradient(135deg, #7dd3fc 0%, #0284c7 100%);
    --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    --dark-gradient: linear-gradient(135deg, #075985 0%, #0c4a6e 100%);
    
    --white: #ffffff;
    --light-bg: #f0f9ff;         /* Sky 50 */
    --card-bg: #ffffff;
    --text-color: #075985;       /* Sky 800 for high readability */
    --text-dark: #0c4a6e;        /* Sky 900 for headings */
    --text-muted: #0284c7;       /* Sky 600 */
    --border-color: #e0f2fe;     /* Sky 100 */
    
    /* Layout & Styling Values */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1280px;
    --header-height: 96px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.25rem;
}

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

li {
    list-style: none;
}

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

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-bg-white {
    background-color: var(--white);
}

.section-bg-light {
    background-color: var(--light-bg);
}

.section-bg-dark {
    background: var(--dark-gradient);
    color: var(--white);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.section-title-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.section-bg-dark .section-subtitle {
    background-color: rgba(14, 165, 233, 0.15);
    color: var(--gold);
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.section-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

.text-left .section-title::after {
    margin: 0.75rem 0 0 0;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    opacity: 0.95;
}

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

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

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

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

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* --- HEADER / NAVIGATION --- */
header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    height: 76px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

header.scrolled .logo img {
    height: 68px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
}

.logo img {
    height: 88px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo span {
    color: var(--gold);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
    padding: 0.5rem 0;
}

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

.nav-dropdown-item a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
}

.nav-dropdown-item a:hover {
    background-color: var(--gold-light);
    color: var(--gold);
    padding-left: 1.75rem;
}

.nav-menu-actions {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
}

.header-call i {
    color: var(--gold);
    font-size: 1.25rem;
}

.header-call:hover {
    color: var(--accent);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(2, 132, 199, 0.08);
    border: 1px solid rgba(2, 132, 199, 0.2);
    color: var(--primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.1);
    outline: none;
}

.mobile-menu-toggle i {
    font-size: 1.25rem;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(2, 132, 199, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.18);
    color: var(--primary-light);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* --- HERO BANNER & SLIDER --- */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background: var(--dark-gradient);
    color: var(--white);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.45);
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero .container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #2db1ee;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
    max-width: 750px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    animation: fadeInUp 1.2s ease-out;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 32px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.05);
        border-color: rgba(255, 255, 255, 0.05);
    }
    100% {
        box-shadow: 0 0 50px rgba(197, 160, 89, 0.2);
        border-color: rgba(197, 160, 89, 0.3);
    }
}

/* --- WHY CHOOSE US SECTION --- */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.choose-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

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

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.choose-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gold-light);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--gold-gradient);
    color: var(--white);
    transform: rotateY(180deg);
}

.choose-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.choose-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.why-choose-split {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.why-choose-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.why-choose-image:hover img {
    transform: scale(1.03);
}

.why-choose-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-choose-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

/* --- SERVICES OVERVIEW SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
	    margin-bottom: 15px;
}

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

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

.service-card-body {
    padding: 0rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card-footer {
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--light-bg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent);
}

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

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

/* --- STATS / COUNTERS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(14, 165, 233, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

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

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
}

/* --- CONTACT CTA BANNER --- */
.cta-banner {
    background: var(--dark-gradient);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner-content {
    max-width: 600px;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 0.85rem;
}

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

.cta-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    flex-shrink: 0;
}

/* --- ABOUT PAGE SPECIFICS --- */
.page-hero {
    padding: 10rem 0 6rem 0;
    background: var(--dark-gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--gold);
}

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

.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-highlight {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent);
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.about-image-inner {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 5;
}

.about-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Mission & Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- SERVICES DETAIL PAGE SPECIFICS --- */
.service-details-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

.service-details-body h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-details-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.feature-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.benefit-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.benefit-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.benefit-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
}

/* --- FAQ SECTION --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-header:hover {
    color: var(--gold);
    background-color: var(--gold-light);
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition);
    color: var(--gold);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
}

.faq-content p {
    padding: 0 0 1.5rem 0;
    margin-bottom: 0;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-item.active .faq-header {
    background-color: var(--gold-light);
    color: var(--gold);
}

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

.faq-item.active .faq-content {
    max-height: 500px; /* high value for toggle height */
}

/* --- CONTACT PAGE SPECIFICS --- */
.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-panel {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(135deg, rgba(7, 89, 133, 0.9) 0%, rgba(12, 74, 110, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.contact-details-list {
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-detail-item i {
    width: 45px;
    height: 45px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.contact-detail-content h4 {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.contact-detail-content p,
.contact-detail-content a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.contact-detail-content a:hover {
    color: var(--gold);
}

.contact-socials h4 {
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social-icon:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 4rem 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-form-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2364748b%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Form Group */
.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1.4;
    font-weight: 500;
    user-select: none;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

/* --- JUSTDIAL TRUST CARD --- */
.justdial-trust-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    background: rgba(249, 115, 22, 0.05); /* Soft orange tint matching Justdial's brand color */
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.05);
    transition: var(--transition);
}

.justdial-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.1);
    background: rgba(249, 115, 22, 0.08);
}

.justdial-trust-card img.jd-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.jd-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.jd-badge-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #f97316; /* Justdial Orange */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jd-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jd-rating-stars {
    color: #fbbf24; /* Star Gold */
    font-size: 0.9rem;
}

.jd-rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- PREMIUM DARK FOOTER --- */
footer {
    background: var(--dark-gradient);
    color: var(--white);
    padding: 5rem 0 2rem 0;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-about .logo img {
    border-radius: 50%;
}

.footer-about p {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: var(--transition);
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.35rem;
}

.footer-links a:hover i {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-contact span {
    display: block;
}

.footer-contact a {
    color: var(--white);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-bottom p a {
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom p a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--white);
    font-size: 0.9rem;
}

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

/* --- FLOATING WIDGETS --- */
/* WhatsApp Button */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseBorder 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
    animation: bounceTooltip 5s infinite;
    pointer-events: none;
    opacity: 0.95;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-right: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

@keyframes pulseBorder {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes bounceTooltip {
    0%, 100%, 20%, 50%, 80% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(-8px);
    }
    60% {
        transform: translateX(-4px);
    }
}

/* --- MOBILE BOTTOM STICKY BAR --- */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #000000;
    display: none; /* Hidden on desktop */
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

/* WhatsApp Button: Outlined style, dark bg, green icon, gold text */
.mobile-bar-btn.btn-whatsapp {
    background: #0b132b;
    color: #c5a059;
    border: 1.5px solid #ffffff;
}

.mobile-bar-btn.btn-whatsapp i {
    color: #25d366;
    font-size: 1.25rem;
}

/* Call Button: Solid gold gradient background, black text, black icon */
.mobile-bar-btn.btn-call {
    background: var(--gold-gradient);
    color: #000000;
    border: none;
}

.mobile-bar-btn.btn-call i {
    color: #000000;
    font-size: 1.1rem;
}

.mobile-bar-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: inherit;
}



/* --- SCROLL REVEAL ANIMATIONS (INTERSECTION OBSERVER) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-left {
    transform: translateX(-30px);
}

.reveal.reveal-right {
    transform: translateX(30px);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }


/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */

@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    .about-split, 
    .contact-split,
    .service-details-split {
        gap: 3rem;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 72px;
    }

    body {
        padding-top: var(--header-height);
    }
    
    header {
        background: var(--white);
        box-shadow: var(--shadow-sm);
        border-bottom: 1px solid var(--border-color);
    }
    
    .logo img {
        height: 64px !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
    }
    .mobile-menu-toggle i {
        font-size: 1.15rem;
    }
    
    /* Nav Menu Mobile styling */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 1.5rem 1.5rem;
        gap: 0.6rem;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 0.25rem 0;
        color: var(--text-dark);
    }

    .nav-menu .nav-link::after {
        display: none !important; /* Hide horizontal line underlines on mobile menu */
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--gold); /* Highlight text color directly on mobile */
    }

    .nav-dropdown {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        position: relative;
    }

    .nav-dropdown-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        width: 100% !important;
        cursor: pointer;
    }
    
    .nav-dropdown-toggle i {
        font-size: 0.85rem;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
    }
    
    .nav-dropdown.active .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        display: block !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-height: 0;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(2, 132, 199, 0.03) !important;
        border-radius: var(--radius-sm) !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.35s ease-out !important;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 350px !important;
        padding: 0.5rem 0 !important;
        margin-top: 0.25rem !important;
    }
    
    .nav-dropdown-item {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .nav-dropdown-item a {
        text-align: center !important;
        padding: 0.5rem 1.5rem !important;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-color);
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: var(--transition);
    }
    
    .nav-dropdown-item a:hover {
        padding-left: 1.5rem !important;
        background-color: rgba(2, 132, 199, 0.08) !important;
        color: var(--gold) !important;
    }
    
    .header-actions {
        display: none; /* Hide in main desktop place */
    }
    
    /* In mobile nav menu bottom */
    .nav-menu-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        margin-top: 1.25rem;
        border-top: 1px solid var(--border-color);
        padding-top: 1.25rem;
    }
    
    .nav-menu-actions .header-call {
        display: flex;
    }
    
    /* Hero layout */
    .hero {
        height: calc(100vh - var(--header-height));
        min-height: 550px;
    }

    .hero .container {
        text-align: center;
        padding: 2.5rem 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.35rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-graphic {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .hero-graphic-inner {
        max-width: 280px;
        height: 280px;
    }
    
    /* Split sections */
    .about-split, 
    .contact-split,
    .service-details-split,
    .why-choose-split {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .why-choose-image {
        max-width: 500px;
        margin: 3rem auto 0 auto;
    }
    
    .about-badge {
        bottom: -20px;
        left: -20px;
        padding: 1.25rem;
    }
    
    .contact-info-panel {
        order: 2; /* Form comes first */
    }
    
    /* Footer layout */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3.5rem 2.5rem;
    }
    
    .cta-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .page-hero {
        padding: 7rem 0 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.05rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-card {
        padding: 2.5rem 2rem;
    }
    
    .whatsapp-widget {
        display: none !important;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 0.35rem 0.85rem;
        margin-bottom: 0.75rem;
    }

    .hero-ctas {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }

    .hero-ctas .btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        flex: 1 1 auto;
        width: auto;
    }

    .hero-ctas .btn:first-child {
        flex: 1 1 100%;
    }

    .hero-ctas .btn:not(:first-child) {
        flex: 1 1 calc(50% - 0.25rem);
    }
    
    .cta-banner-buttons .btn {
        width: 100%;
    }
    


    .page-hero {
        padding: 5.5rem 0 3rem 0;
    }

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