/* ==========================================================================
   ADONAS BUILDINGS MAINTENANCE - PREMIUM CSS STYLESHEET
   Aesthetics: Deep Luxury Blue, Brand Gold Accents, Sleek Micro-animations
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --primary: #194669;
    --primary-dark: #0e2a3f;
    --primary-light: #2c6491;
    --accent: #D4AD4A;
    --accent-hover: #bca03d;
    --accent-glow: rgba(212, 173, 74, 0.4);
    
    --bg-light: #f8fbfd;
    --bg-white: #ffffff;
    --bg-dark-gray: #0b1a27;
    
    --text-dark: #1a2a36;
    --text-muted: #5c6f80;
    --text-light: #f0f6fa;
    --text-white: #ffffff;
    
    --border: #e6eef4;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(25, 70, 105, 0.04);
    --shadow-md: 0 12px 30px rgba(25, 70, 105, 0.08);
    --shadow-lg: 0 24px 60px rgba(25, 70, 105, 0.15);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --max-width: 1280px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 85px; /* Offset for sticky header */
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

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

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

.text-gold {
    color: var(--accent);
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

/* Icon Resets */
.icon-sm {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.icon-bullet {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 42, 63, 0.25);
}

.btn-gold {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

.btn-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary);
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-link i {
    transition: transform var(--transition-fast);
}

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

.btn-copy {
    background: rgba(25, 70, 105, 0.05);
    color: var(--primary);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

/* Scroll-based Animations Setup */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* TOP INFO BAR */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

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

.top-social .social-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent);
    font-weight: 600;
}

.top-social .social-link:hover {
    color: var(--text-white);
}

/* MAIN HEADER & NAVIGATION */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 0.9rem 0;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 0.6rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.menu-toggle {
    display: none;
    color: var(--primary-dark);
}

/* MOBILE NAV DRAWER */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 42, 63, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    color: var(--primary-dark);
}

.drawer-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.drawer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.drawer-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-bottom: 24rem;
}

.hero-content {
    max-width: 720px;
    margin-bottom: 0;
}

.badge-accent {
    display: inline-block;
    background-color: rgba(212, 173, 74, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Cards Layer */
.hero-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: absolute;
    bottom: -14rem;
    left: 2rem;
    right: 2rem;
    z-index: 10;
}

.hero-stat-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--accent);
    transition: var(--transition);
}

.hero-stat-card:hover {
    transform: translateY(-10px);
}

.hero-stat-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(25, 70, 105, 0.05);
    border-radius: var(--radius-md);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.hero-stat-card:hover .card-icon {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.hero-stat-card .card-icon i {
    width: 30px;
    height: 30px;
}

.hero-stat-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
}

.hero-stat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Hero Bottom SVG Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

/* SECTION HEADER TEMPLATE */
.section-header {
    margin-bottom: 4rem;
}

.subtitle-gold {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.6rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1.2rem auto 0 auto;
    border-radius: var(--radius-full);
}

/* ABOUT SECTION */
.about-section {
    padding: 14rem 0 8rem 0; /* Optimized top padding to accommodate the overlapping cards */
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 6rem;
}

/* Stacked Image Panel */
.about-img-panel {
    position: relative;
    height: 480px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-stack img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.img-large-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 420px;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-large-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-small-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 280px;
    z-index: 3;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    border: 8px solid var(--bg-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-small-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    opacity: 0.35;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    border-left: 5px solid var(--accent);
}

.exp-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent);
}

.exp-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Text Panel */
.about-text-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.about-text-panel p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.check-icon {
    color: var(--accent);
    flex-shrink: 0;
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.vm-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition);
}

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

.vm-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.vm-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: rgba(212, 173, 74, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon i {
    width: 26px;
    height: 26px;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.vm-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transition: var(--transition);
}

.vm-card:hover .vm-card-accent {
    background-color: var(--accent);
}

/* SERVICES SECTION */
.services-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
    position: relative;
}

.services-bg-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 60%;
    background: radial-gradient(circle, rgba(25, 70, 105, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(25, 70, 105, 0.15);
}

.service-image-container {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(14, 42, 63, 0.6) 100%);
}

.service-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-dark);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--accent);
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-list-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-detail-trigger {
    align-self: flex-start;
}

/* INTERACTIVE SERVICE MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 42, 63, 0.65);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(30px);
    transition: var(--transition);
}

.modal.active .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-content {
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-hero {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
}

.modal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(14, 42, 63, 0.9) 0%, rgba(14, 42, 63, 0.2) 100%);
}

.modal-title-container {
    position: relative;
    z-index: 1;
}

.modal-tag {
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-hero h2 {
    color: var(--text-white);
    font-size: 2.2rem;
    margin-top: 0.5rem;
}

.modal-body {
    padding: 2.5rem;
}

.modal-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.modal-subservices h4,
.modal-benefits h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.6rem;
}

.modal-subservices ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-subservices li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

/* STATS SECTION (Numbers that WOW) */
.stats-section {
    padding: 6rem 0;
    background-color: var(--primary-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 173, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    color: var(--accent);
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent);
    display: inline-block;
    vertical-align: top;
    margin-left: 2px;
}

.stat-item > div:first-child {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

/* INTERACTIVE QUOTE BUILDER SECTION */
.quote-builder-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.builder-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 4rem;
    border: 1px solid var(--border);
}

.builder-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.builder-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.builder-header p {
    color: var(--text-muted);
}

.builder-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
}

.builder-selectors {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.builder-selectors h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Chip Checkbox Styling */
.selector-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.select-chip {
    cursor: pointer;
}

.select-chip input[type="checkbox"] {
    display: none;
}

.chip-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background-color: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.chip-content i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.chip-content span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.select-chip input[type="checkbox"]:checked + .chip-content {
    background-color: rgba(25, 70, 105, 0.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.select-chip input[type="checkbox"]:checked + .chip-content i {
    color: var(--accent);
}

/* Property Size Slider */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

#areaVal {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border);
    outline: none;
    margin-top: 0.5rem;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--accent-hover);
    transform: scale(1.15);
}

/* Frequency Radio Buttons */
.freq-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.freq-radio {
    cursor: pointer;
}

.freq-radio input[type="radio"] {
    display: none;
}

.radio-label {
    display: block;
    padding: 1rem 1.2rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--primary-dark);
    transition: var(--transition-fast);
}

.freq-radio input[type="radio"]:checked + .radio-label {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* Summary Card */
.builder-summary-card {
    background-color: var(--primary-dark);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border-left: 6px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.builder-summary-card::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 173, 74, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.summary-inner h4 {
    color: var(--text-white);
    font-size: 1.35rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-line span:first-child {
    opacity: 0.7;
}

.summary-line span:last-child {
    font-weight: 700;
}

.price-display {
    text-align: center;
    margin: 2rem 0;
}

.price-lbl {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 0.3rem;
}

.amount {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
}

.per {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-left: 0.2rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 1rem;
}

/* CONTACT SECTION */
.contact-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel h3,
.contact-form-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

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

.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    position: relative;
}

.cd-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: rgba(25, 70, 105, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon i {
    width: 24px;
    height: 24px;
}

.cd-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.cd-content p {
    margin-bottom: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

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

.contact-detail-card .btn-copy {
    position: absolute;
    right: 1.5rem;
}

/* Custom Contact Form */
.contact-form-panel {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border);
}

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

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    background-color: var(--bg-white);
    color: var(--primary-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(25, 70, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* FOOTER SECTION */
.footer-section {
    background-color: var(--bg-dark-gray);
    color: var(--text-light);
    padding: 8rem 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-area {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.footer-tagline {
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-grid h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-nav ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a,
.footer-services a {
    opacity: 0.75;
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.footer-bottom {
    background-color: #06111b;
    padding: 2rem 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.gold-link {
    color: var(--accent);
    font-weight: 700;
}

.gold-link:hover {
    text-decoration: underline;
}

/* FLOATING WIDGETS */
.floating-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--text-white);
    position: relative;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 173, 74, 0.4);
}

.widget-label {
    position: absolute;
    right: 75px;
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.widget-btn:hover .widget-label {
    opacity: 1;
    transform: translateX(0);
}

/* ANIMATIONS keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* RESPONSIVE DESIGN - BREAKPOINTS */

@media (max-width: 1200px) {
    .hero-section {
        padding: 8rem 0 4rem 0;
    }
    .hero-container {
        padding-bottom: 0;
    }
    .hero-content {
        margin-bottom: 3rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-card-grid {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 4rem;
        margin-bottom: -5rem;
    }
    .about-section {
        padding-top: 8rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    .hero-section {
        padding: 6rem 0 3rem 0;
    }
    .hero-container {
        padding-bottom: 0;
    }
    .hero-content {
        margin-bottom: 2rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-img-panel {
        height: 380px;
        max-width: 550px;
        margin: 0 auto;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .builder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
    .hero-card-grid {
        grid-template-columns: 1fr;
        margin-bottom: 0;
        margin-top: 3rem;
    }
    .about-section {
        padding-top: 6rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .top-bar {
        display: none; /* Hide top info bar on mobile to keep header clean */
    }
    .about-img-panel {
        height: 280px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .img-large-wrap {
        width: 75%;
        height: 240px;
    }
    .img-small-wrap {
        width: 55%;
        height: 160px;
        border: 4px solid var(--bg-light);
    }
    .experience-badge {
        padding: 0.8rem 1rem;
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
        border-radius: var(--radius-sm);
    }
    .exp-number {
        font-size: 1.2rem;
    }
    .exp-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .builder-card {
        padding: 2rem;
    }
    .selector-options {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .modal-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .about-img-panel {
        height: 220px;
    }
    .img-large-wrap {
        height: 190px;
    }
    .img-small-wrap {
        height: 120px;
        border-width: 3px;
    }
    .experience-badge {
        padding: 0.6rem 0.8rem;
        bottom: 1rem;
        left: 1rem;
        right: auto;
    }
    .exp-number {
        font-size: 1.1rem;
    }
    .exp-text {
        font-size: 0.65rem;
        letter-spacing: 0px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* SVG Logo Styling */
.logo-svg-container {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.adonas-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(25, 70, 105, 0.1));
    transition: var(--transition-fast);
}

.logo-area:hover .adonas-logo-svg {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 8px rgba(212, 173, 74, 0.5));
}

.footer-brand .logo-svg-container {
    width: 52px;
    height: 52px;
}
