/* Reset and global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316; /* Bright orange for construction */
    --primary-hover: #ea580c;
    --background: #ffffff;
    --foreground: #020617;
    --muted: #64748b;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

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

/* Hero Section Layout */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        height: 100vh;
        overflow: hidden;
    }
}

/* Left Content Area */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    background-color: var(--background);
    flex-grow: 1;
}

@media (min-width: 768px) {
    .hero-content {
        width: 50%;
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        width: 60%;
        padding: 4rem;
    }
}

/* Header & Logo */
.hero-header {
    margin-bottom: 3rem;
}

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

.logo-img {
    height: 2rem;
    width: 2rem;
    object-fit: cover;
    margin-right: 0.75rem;
    border-radius: 0.375rem;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.company-slogan {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-transform: uppercase;
}

/* Main Text */
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.divider {
    display: none; /* Orange bar hidden sitewide as per user request */
}

.hero-subtitle {
    margin-bottom: 2rem;
    max-width: 28rem;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Old plain btn kept for fallback, new glass button below */
.btn-primary {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ---- Rotating Text Component ---- */
.rotating-text-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  white-space: pre-wrap;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  /* Ensure min-height so it doesn't collapse during swaps */
  min-height: 1.2em; 
}

.rotating-text-word {
  display: inline-flex;
  overflow: hidden;
  padding-bottom: 0.1em;
}

.rotating-text-char {
  display: inline-block;
  transform-origin: center center;
  will-change: transform, opacity;
}

.rotating-text-space {
  white-space: pre;
}

/* ---- Premium Crystal Glass Button ---- */
.glass-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #1e6fa8;                          /* Deep sky blue text */
    
    /* Crystal glass box */
    background: rgba(186, 230, 253, 0.35);   /* Light blue glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(147, 210, 255, 0.6);
    border-radius: 14px;
    
    /* Soft blue glow */
    box-shadow:
        0 4px 16px rgba(56, 182, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.glass-btn:hover {
    transform: translateY(-3px);
    background: rgba(186, 230, 253, 0.55);
    box-shadow:
        0 8px 28px rgba(56, 182, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-btn i {
    transition: transform 0.25s ease;
}

.glass-btn:hover i {
    transform: translateX(4px);
}

/* Footer / Contact Info */
.hero-footer {
    margin-top: 3rem;
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted);
}

@media (min-width: 640px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.contact-item span {
    word-break: break-all;
}

/* Right Image Area */
.hero-image {
    position: relative;
    width: 100%;
    height: 45vh; /* Fixed visible height for mobile stacking */
    min-height: 300px;
}

@media (min-width: 768px) {
    .hero-image {
        position: relative;
        width: 50%;
        height: 100%;
        min-height: 100%;
        inset: auto;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        width: 40%;
    }
}

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

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Framer Motion clip-path default equivalent */
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: opacity 0.8s ease-in-out, clip-path 1.2s cubic-bezier(0.0, 0.55, 0.45, 1) 0.5s;
    opacity: 0;
    z-index: 1;
}

.image-bg.active {
    opacity: 1;
    z-index: 2;
}

.hero-image.animate .image-bg {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 20%; /* Offset to be inside the clip path (clip starts at 15%) */
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-overlay {
    display: none; /* No longer needed as text doesn't overlap image on mobile */
}

/* Entrance Animations equivalent to Framer Motion */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered delays */
.hero-header.fade-up { transition-delay: 0.2s; }
.hero-main.fade-up   { transition-delay: 0.35s; }
.hero-footer.fade-up { transition-delay: 0.5s; }

/* Remove the old transform overrides for nav - no longer needed */

/* Premium Glass Navbar - Stable Centering */
.premium-nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    /* Center using margin instead of transform to prevent zoom and resize bugs */
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    /* CRITICAL: never invisible even if GSAP fails */
    opacity: 1;
    z-index: 9999;
}

/* Hero content top padding to clear the nav */
.hero-content {
    padding-top: 110px;
}

@media (min-width: 768px) {
    .premium-nav {
        top: 24px;
    }
    .hero-content {
        padding-top: 130px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.15rem 1.5rem; /* Reduced padding preserves same total nav height */
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--foreground);
}

.nav-logo {
    height: 75px; /* Huge explicit logo size */
    width: 75px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 6px;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.nav-brand-main {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--foreground);
}

.nav-brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2a82bf;   /* Premium blue matching reference screenshot */
    text-transform: uppercase;
}

.menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--foreground);
    cursor: pointer;
}

.close-menu {
    display: block;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--foreground);
    cursor: pointer;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
}

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

/* Mobile Sidebar Styles */
.desktop-only {
    display: none;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98); /* Extremely opaque so hero text doesn't overlap/bleed */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 5rem 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10000;
}

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

@media (min-width: 768px) {
    .menu-toggle, .close-menu, .sidebar-overlay, .mobile-sidebar {
        display: none !important;
    }
    .desktop-only {
        display: flex;
    }
    .nav-links {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.btn-contact {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 12px;
}

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

/* Navigation Dropdown (Desktop) */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 100;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
}

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

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    gap: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.sub-link {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
}
.sub-link:hover {
    color: var(--primary);
}

/* About Section */
.about-section {
    position: relative;
    display: flex;
    flex-direction: column-reverse; /* Reverses order on mobile: Content on top, Visual on bottom */
    padding: 3rem 2rem;
    background-color: #ffffff; /* Clean white background */
    z-index: 10;
}

@media (min-width: 768px) {
    .about-section {
        flex-direction: row;
        padding: 4rem 5%;
        align-items: center;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 10%;
    }
}

.about-content {
    flex: 1;
    margin-bottom: 4rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .about-content {
        margin-bottom: 0;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.about-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.about-visual {
    flex: 1;
    position: relative;
    min-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Carousel Component */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 280px;
  height: 350px;
}

@media (min-width: 768px) {
  .carousel-container {
    width: 340px;
    height: 420px;
  }
}

.carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  gap: 16px;
  perspective: 1200px;
}

.carousel-item {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 100%; 
  height: 100%;
  border-radius: 20px;
  background-color: #f1f5f9;
  overflow: hidden;
  cursor: grab;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform-style: preserve-3d;
  /* Remove backface visibility to fix possible safari glitches with rotateY */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel-item:active {
  cursor: grabbing;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Prevent image drag breaking custom drag */
}

.carousel-indicators-container {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.carousel-indicators {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.carousel-indicator {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #cbd5e1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicator.active {
  background-color: var(--primary);
  transform: scale(1.4);
}

/* About Section Background Elements */
.about-watermark {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.06);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
}

@media (min-width: 768px) {
    .about-watermark {
        font-size: 12rem;
        top: 10%;
        right: 10%;
    }
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

@media (min-width: 768px) {
    .experience-badge {
        bottom: 5%;
        right: -10%;
        padding: 1.25rem 1.5rem;
    }
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #e65c00);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

.badge-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin: 0;
    line-height: 1;
}

.badge-text p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Features List */
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-features-list {
        grid-template-columns: 1fr 1fr;
    }
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--foreground);
    font-weight: 600;
}

.about-features-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Button Pulse Enhancement */
.btn-pulse {
    position: relative;
    overflow: visible;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
}

/* --- Services Section --- */
.services-wrapper {
    padding: 5rem 2rem;
    background-color: #f9fafb; /* Light clean background */
}

.services-header {
    margin-bottom: 3rem;
}

.services-carousel-container {
    position: relative;
    max-width: 1200px; /* Wider as requested */
    margin: 0 auto;
    padding-bottom: 3rem;
    padding-top: 2rem; /* Space for the stacked cards behind */
}

/* Stacking pseudo-elements to mimic React Bits stack */
.services-carousel-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 2%;
    right: 2%;
    height: 60px;
    background: #ffffff;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.03);
    z-index: 1;
    border: 1px solid #f3f4f6;
}

.services-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 4%;
    right: 4%;
    height: 60px;
    background: #ffffff;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.02);
    z-index: 0;
    border: 1px solid #f3f4f6;
}

.services-track-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border: 1px solid #f3f4f6;
}

.services-track {
    display: flex;
    width: 100%;
}

.service-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 1.5rem; /* Highly reduced top/bottom padding */
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .service-slide {
        padding: 2rem 3rem; /* Highly reduced top/bottom padding */
    }
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .service-card-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

.service-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Proper number alignment like reference */
.service-number {
    font-size: 2.5rem; /* Smaller */
    font-weight: 800;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .service-number {
        font-size: 3.5rem; /* Smaller */
    }
}

.service-title {
    font-size: 1.6rem; /* Smaller */
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-desc {
    font-size: 0.95rem; /* Smaller */
    color: #4b5563;
    line-height: 1.5;
}

.learn-more-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.learn-more-btn:hover {
    color: #e65c00;
    transform: translateX(5px);
}

.service-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Distinct right-side container like reference */
.service-image-container {
    width: 100%;
    max-width: 320px; /* Reduced to make height compact */
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background-color: #f9fafb;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* optional subtle shadow for depth */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

/* Navigation Arrows */
.service-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4b5563;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.service-arrow:hover {
    background-color: #f9fafb;
    color: var(--primary);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.service-arrow-left {
    left: -20px;
}

.service-arrow-right {
    right: -20px;
}

@media (min-width: 1280px) {
    .service-arrow-left {
        left: -60px;
    }
    .service-arrow-right {
        right: -60px;
    }
}

.service-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Distinct right-side container like reference */
.service-image-container {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background-color: #f9fafb;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* optional subtle shadow for depth */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.floating-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination Indicators */
.services-indicators-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: #111827; /* Dark active dot */
}

/* Global Footer */
.site-footer {
    background-color: var(--foreground);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.chooseus-section {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(165deg, #ffffff 0%, #f0f4f8 40%, #e8f0fe 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .chooseus-section {
        padding: 6rem 5%;
    }
}

@media (min-width: 1024px) {
    .chooseus-section {
        padding: 7rem 8%;
    }
}

/* Watermark */
.chooseus-watermark {
    position: absolute;
    top: 5%;
    left: -2%;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .chooseus-watermark {
        font-size: 12rem;
        top: 8%;
    }
}

/* Container */
.chooseus-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .chooseus-container {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
}

/* ---- Left Side ---- */
.chooseus-left {
    flex: 1;
}

.chooseus-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2rem;
}

/* Image Gallery */
.chooseus-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chooseus-gallery-main {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.chooseus-gallery-main img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 768px) {
    .chooseus-gallery-main img {
        height: 280px;
    }
}

.chooseus-gallery-main:hover img {
    transform: scale(1.05);
}

.chooseus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.chooseus-thumb {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.chooseus-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (min-width: 768px) {
    .chooseus-thumb img {
        height: 100px;
    }
}

.chooseus-thumb:hover img {
    transform: scale(1.1);
}

/* ---- Right Side ---- */
.chooseus-right {
    flex: 1.15;
}

.chooseus-features-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 480px) {
    .chooseus-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .chooseus-features-grid {
        gap: 1.1rem;
    }
}

/* ---- Feature Cards ---- */
.chooseus-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    cursor: default;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Subtle shine overlay */
.chooseus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.chooseus-card:hover::before {
    left: 100%;
}

/* Hover State */
.chooseus-card:hover {
    background: linear-gradient(135deg, #FF5A2C 0%, #ff8a5c 50%, #f97316 100%);
    border-color: rgba(255, 90, 44, 0.3);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 90, 44, 0.25), 0 0 60px rgba(255, 90, 44, 0.08);
}

.chooseus-card:hover .chooseus-card-title {
    color: #ffffff;
}

.chooseus-card:hover .chooseus-card-desc {
    color: rgba(255, 255, 255, 0.85);
}

.chooseus-card:hover .chooseus-card-number {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1) rotate(-3deg);
}

/* Number Badge */
.chooseus-card-number {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(249, 115, 22, 0.08);
    border: 1.5px solid rgba(249, 115, 22, 0.15);
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}

/* Card Content */
.chooseus-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.chooseus-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.chooseus-card-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* ---- Scroll Animation States ---- */
.chooseus-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.chooseus-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Mobile Responsive Tweaks ---- */
@media (max-width: 479px) {
    .chooseus-card {
        padding: 1.25rem;
    }
    .chooseus-card-number {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    .chooseus-card-title {
        font-size: 0.95rem;
    }
    .chooseus-card-desc {
        font-size: 0.8rem;
    }
    .chooseus-gallery-main img {
        height: 200px;
    }
    .chooseus-thumb img {
        height: 75px;
    }
}

/* ============================================
   REAL ESTATE PROPERTIES SECTION
   ============================================ */
.properties-section {
    position: relative;
    padding: 3.5rem 2rem 2rem;
    background: linear-gradient(170deg, #1a1f2e 0%, #232a3b 50%, #1e2433 100%);
    overflow: hidden;
}

@media (min-width: 768px) {
    .properties-section {
        padding: 3.5rem 5% 2rem;
    }
}

@media (min-width: 1024px) {
    .properties-section {
        padding: 4rem 8% 2.5rem;
    }
}

/* Decorative Background Glows */
.prop-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.prop-bg-glow-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

.prop-bg-glow-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.06) 0%, transparent 70%);
}

/* Container */
.prop-container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

/* ---- Section Header ---- */
.prop-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .prop-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 2rem;
    }
}

.prop-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.prop-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f0f2f5;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .prop-title {
        font-size: 2.8rem;
    }
}

.prop-title-accent {
    color: var(--primary);
    position: relative;
}

.prop-header-right {
    max-width: 400px;
}

.prop-intro {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.prop-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.prop-explore-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.prop-explore-btn i {
    transition: transform 0.3s ease;
}

.prop-explore-btn:hover i {
    transform: translateX(4px);
}

/* ---- Bento Grid ---- */
.prop-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .prop-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }
}

@media (min-width: 992px) {
    .prop-bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 1.1rem;
    }

    /* Featured card — spans left column, 2 rows tall */
    .prop-card-featured {
        grid-row: 1 / 3;
    }

    /* Wide card — spans bottom 2 columns */
    .prop-card-wide {
        grid-column: 2 / 4;
    }
}

/* ---- Property Cards ---- */
.prop-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 240px;
    cursor: pointer;
    isolation: isolate;
    transform: translateZ(0);       /* force GPU layer */
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;    /* prevent flicker */
    -webkit-backface-visibility: hidden;
    will-change: opacity, transform;
}

@media (min-width: 992px) {
    .prop-card {
        min-height: 220px;
    }
    .prop-card-featured {
        min-height: 100%;
    }
}

/* Card Image */
.prop-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.prop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);       /* GPU layer for smooth hover scale */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

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

/* Gradient Overlay */
.prop-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
    transition: background 0.5s ease;
}

.prop-card:hover .prop-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

/* Badge */
.prop-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: rgba(249, 115, 22, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.prop-badge-land {
    background: rgba(34, 139, 84, 0.85);
}

.prop-card:hover .prop-card-badge {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Card Info */
.prop-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1.25rem;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prop-card:hover .prop-card-info {
    transform: translateY(0);
}

.prop-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

@media (min-width: 992px) {
    .prop-card-featured .prop-card-name {
        font-size: 1.6rem;
    }
}

.prop-card-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.prop-card-location i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Meta Tags */
.prop-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.prop-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.prop-card-meta span i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* View Button */
.prop-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1.3rem;
    background: var(--primary);
    border-radius: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.prop-card:hover .prop-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.prop-view-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.prop-view-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.prop-view-btn:hover i {
    transform: translateX(4px);
}

/* ---- Responsive Tweaks ---- */
@media (max-width: 639px) {
    .prop-card {
        min-height: 260px;
    }
    .prop-card-name {
        font-size: 1.05rem;
    }
    .prop-card-info {
        padding: 1rem;
    }
    .prop-title {
        font-size: 1.8rem;
    }
    .prop-header-right {
        max-width: 100%;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .prop-card-wide {
        grid-column: 1 / -1;
        min-height: 260px;
    }
}

/* ============================================================
   CALL TO ACTION SECTION  (White, Two-Column)
   ============================================================ */

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0   rgba(249, 115, 22, 0.45); }
    50%       { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
}

/* Section */
.cta-section {
    background: #ffffff;
    padding: 5rem 5%;
    border-top: 1px solid #f1f5f9;
}

/* Inner two-column wrapper */
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 900px) {
    .cta-inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

/* ---- LEFT COLUMN ---- */
.cta-left {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
}

.cta-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.2rem;
}

.cta-heading {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--foreground);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

@media (min-width: 640px)  { .cta-heading { font-size: 2.8rem; } }
@media (min-width: 1024px) { .cta-heading { font-size: 3.2rem; } }

.cta-heading-accent {
    background: linear-gradient(90deg, var(--primary), #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtext {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Button group */
.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    white-space: nowrap;
}

.cta-btn i { font-size: 0.95rem; flex-shrink: 0; }

/* Primary – Orange filled */
.cta-btn-primary {
    background: linear-gradient(135deg, var(--primary), #ea580c);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.3);
    border: none;
}
.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.5);
    color: #ffffff;
}

/* Outline – dark border */
.cta-btn-outline {
    background: #ffffff;
    color: var(--foreground);
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cta-btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
}

/* WhatsApp */
.cta-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}
.cta-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

/* ---- RIGHT COLUMN ---- */
.cta-right {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-right {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .cta-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .cta-right {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual card */
.cta-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1.25rem 1rem;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.1);
}

/* Card icon circle */
.cta-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
    animation: ctaPulse 3s ease-in-out infinite;
}

/* Stagger pulse so each card feels alive independently */
.cta-card:nth-child(2) .cta-card-icon { animation-delay: 0.5s; }
.cta-card:nth-child(3) .cta-card-icon { animation-delay: 1s; }
.cta-card:nth-child(4) .cta-card-icon { animation-delay: 1.5s; }
.cta-card:nth-child(5) .cta-card-icon { animation-delay: 2s; }
.cta-card:nth-child(6) .cta-card-icon { animation-delay: 2.5s; }

/* Card text */
.cta-card-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.cta-card-text p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* Fade-up stagger for two columns */
.cta-left.fade-up  { transition-delay: 0.1s; }
.cta-right.fade-up { transition-delay: 0.25s; }

/* Mobile full-width buttons */
@media (max-width: 479px) {
    .cta-btn       { width: 100%; justify-content: center; }
    .cta-btn-group { flex-direction: column; }
    .cta-right     { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   OUR PROCESS SECTION (Magic Bento)
   ============================================================ */

.process-section {
    position: relative;
    padding: 5rem 5%;
    background: #120F17;
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-grid {
    display: grid;
    gap: 0.5em;
    padding: 0.75em;
    max-width: 64em;
    margin: 0 auto;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.magic-bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    aspect-ratio: 4/3;
    min-height: 200px;
    width: 100%;
    max-width: 100%;
    padding: 1.5em;
    border-radius: 20px;
    border: 1px solid #2F293A;
    background: #120F17;
    font-weight: 300;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;

    --glow-x: 50%;
    --glow-y: 50%;
    --glow-intensity: 0;
    --glow-radius: 300px;
    --glow-color: 132, 0, 255;
}

.magic-bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.magic-bento-card__header,
.magic-bento-card__content {
    display: flex;
    position: relative;
    color: #ffffff;
    z-index: 2;
}

.magic-bento-card__header {
    gap: 0.75em;
    justify-content: space-between;
}

.magic-bento-card__image {
    flex: 1;
    position: relative;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.03); /* subtle placeholder if image is slow */
}

.magic-bento-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.magic-bento-card:hover .magic-bento-card__image img {
    transform: scale(1.05);
}

.magic-bento-card__content {
    flex-direction: column;
}

.magic-bento-card__label {
    font-size: 16px;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: bold;
}

.magic-bento-card__title,
.magic-bento-card__description {
    --clamp-title: 1;
    --clamp-desc: 3;
}

.magic-bento-card__title {
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 0.25em;
}

.magic-bento-card__description {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.magic-bento-card--text-autohide .magic-bento-card__title,
.magic-bento-card--text-autohide .magic-bento-card__description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.magic-bento-card--text-autohide .magic-bento-card__title {
    -webkit-line-clamp: var(--clamp-title);
    line-clamp: var(--clamp-title);
}

.magic-bento-card--text-autohide .magic-bento-card__description {
    -webkit-line-clamp: var(--clamp-desc);
    line-clamp: var(--clamp-desc);
}

@media (max-width: 599px) {
    .process-grid {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }

    .magic-bento-card {
        min-height: 200px;
        aspect-ratio: auto;
    }
    
    .magic-bento-card__image {
        min-height: 200px;
    }
}

@media (min-width: 600px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .magic-bento-card:nth-child(3) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .magic-bento-card:nth-child(4) {
        grid-column: 1 / span 2;
        grid-row: 2 / span 2;
    }

    .magic-bento-card:nth-child(6) {
        grid-column: 4;
        grid-row: 3;
    }
}

/* Border glow effect */
.magic-bento-card--border-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 4px;
    background: radial-gradient(
        var(--glow-radius) circle at var(--glow-x) var(--glow-y),
        rgba(var(--glow-color), calc(var(--glow-intensity) * 0.8)) 0%,
        rgba(var(--glow-color), calc(var(--glow-intensity) * 0.4)) 30%,
        transparent 60%
    );
    border-radius: inherit;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.magic-bento-card--border-glow:hover {
    box-shadow:
        0 4px 20px rgba(132, 0, 255, 0.4),
        0 0 30px rgba(132, 0, 255, 0.2);
}

.particle-container {
    position: relative;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(132, 0, 255, 1);
    box-shadow: 0 0 6px rgba(132, 0, 255, 0.6);
    pointer-events: none;
    z-index: 100;
}

.particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(132, 0, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
}

/* Global spotlight styles */
.global-spotlight {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle,
        rgba(132, 0, 255, 0.15) 0%,
        rgba(132, 0, 255, 0.08) 15%,
        rgba(132, 0, 255, 0.04) 25%,
        rgba(132, 0, 255, 0.02) 40%,
        rgba(132, 0, 255, 0.01) 65%,
        transparent 70%
    );
    z-index: 200 !important;
    opacity: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

/* ==========================================================================
   Professional Footer Styles
   ========================================================================== */
.site-footer {
    background: rgba(249, 115, 22, 0.05); /* Light orange glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 -10px 40px rgba(249, 115, 22, 0.03);
    color: #0f172a;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center; /* Centered on mobile */
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left; /* Left aligned on desktop */
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}

/* Column Elements */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered on mobile */
    text-decoration: none;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        justify-content: flex-start;
    }
}

.footer-desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 auto 1.5rem auto; /* Centered on mobile */
    max-width: 300px;
}

@media (min-width: 768px) {
    .footer-desc {
        margin: 0 0 1.5rem 0;
    }
}

.footer-socials {
    display: flex;
    justify-content: center; /* Centered on mobile */
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-socials {
        justify-content: flex-start;
    }
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Orange bar removed as requested */

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

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

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Centered on mobile */
    gap: 1rem;
    color: #475569;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-contact-list li {
        justify-content: flex-start;
    }
}

.footer-contact-list li i {
    color: var(--primary);
    margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(249, 115, 22, 0.08); /* Light orange bottom bar */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright p, .footer-developer p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-developer a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: var(--primary);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Shared label pill */
.ab-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary);
    border: 1px solid rgba(249,115,22,0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ab-para {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 560px;
}

/* ---------- 1. HERO ---------- */
.ab-hero {
    position: relative;
    background: #0f172a;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.ab-hero-bg-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.ab-hero-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.ab-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ab-breadcrumb {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.ab-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.ab-breadcrumb a:hover { color: var(--primary); }
.ab-breadcrumb i { margin: 0 0.5rem; font-size: 0.65rem; }

.ab-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .ab-hero-title { font-size: 3.5rem; } }

.ab-hero-accent {
    color: var(--primary);
}

.ab-hero-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    max-width: 500px;
}

.ab-hero-badge-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 2.5rem auto 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.ab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(249,115,22,0.3);
    color: rgba(255,255,255,0.8);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    backdrop-filter: blur(6px);
}
.ab-hero-badge i { color: var(--primary); }

/* ---------- 2. WHO WE ARE ---------- */
.ab-story {
    padding: 5rem 2rem;
    background: #fff;
}
.ab-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) {
    .ab-story-inner {
        flex-direction: row;
        gap: 5rem;
        align-items: flex-start;
    }
}
.ab-story-text { flex: 1; }
.ab-story-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stacked images */
.ab-img-stack {
    position: relative;
    width: 300px;
    height: 360px;
}
@media (min-width: 768px) {
    .ab-img-stack { width: 360px; height: 420px; }
}

.ab-img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 82%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.ab-img-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 72%;
    height: 72%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2;
}
.ab-img-back img,
.ab-img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ab-img-back:hover img,
.ab-img-front:hover img { transform: scale(1.05); }

.ab-img-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 0.65rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
    animation: ab-badge-float 3s ease-in-out infinite;
}
.ab-img-badge i { font-size: 1.2rem; }

@keyframes ab-badge-float {
    0%, 100% { transform: translate(-50%,-50%) translateY(0); }
    50%       { transform: translate(-50%,-50%) translateY(-8px); }
}

/* ---------- 3. STATS STRIP ---------- */
.ab-stats {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}
.ab-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(249,115,22,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.ab-stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.ab-stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 1.5rem 1rem;
}
.ab-stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.ab-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-block;
}
.ab-stat-plus {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
    line-height: 1;
}
.ab-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ab-stat-divider {
    width: 1px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    display: none;
}
@media (min-width: 768px) { .ab-stat-divider { display: block; } }

/* ---------- 4. VISION & MISSION ---------- */
.ab-vm-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}
.ab-vm-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ab-vm-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ab-vm-grid { grid-template-columns: 1fr 1fr; }
}
.ab-vm-card {
    position: relative;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: 20px;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(249,115,22,0.12);
}
.ab-vm-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(249,115,22,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.ab-vm-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 1rem;
}
.ab-vm-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
}
.ab-vm-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ab-vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.ab-vm-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.ab-vm-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ---------- 5. CORE SERVICES ---------- */
.ab-services {
    padding: 5rem 2rem;
    background: #fff;
}
.ab-services-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ab-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.ab-svc-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
}
.ab-svc-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.ab-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.2);
}
.ab-svc-card:hover::before { transform: scaleX(1); }

.ab-svc-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(249,115,22,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.ab-svc-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.ab-svc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}
.ab-svc-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.ab-svc-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s ease;
}
.ab-svc-link:hover { gap: 0.75rem; }

/* ---------- 6. WHY CHOOSE US ---------- */
.ab-why {
    padding: 5rem 2rem;
    background: #f8fafc;
}
.ab-why-header {
    text-align: center;
    margin-bottom: 3rem;
}
.ab-why-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.ab-why-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.ab-why-card:hover {
    box-shadow: 0 16px 40px rgba(249,115,22,0.1);
    transform: translateY(-4px);
    border-color: rgba(249,115,22,0.2);
}
.ab-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249,115,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    transition: background 0.3s ease;
}
.ab-why-card:hover .ab-why-icon { background: var(--primary); color: #fff; }
.ab-why-card h4 { font-size: 1rem; font-weight: 700; color: var(--foreground); }
.ab-why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ---------- 7. PROCESS / TIMELINE ---------- */
.ab-process {
    padding: 5rem 2rem;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}
.ab-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.ab-process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}
.ab-timeline {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.ab-timeline-track {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.08);
    display: none;
    overflow: hidden;
}
@media (min-width: 768px) { .ab-timeline-track { display: block; } }

.ab-timeline-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 1.5s ease 0.3s;
}
.ab-timeline-track--animated::after { width: 100%; }

.ab-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 768px) {
    .ab-timeline-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
    }
}

.ab-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
}

.ab-step-bubble {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(249,115,22,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
}
.ab-step-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.ab-step--active .ab-step-bubble {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 24px rgba(249,115,22,0.5);
}
.ab-step--active .ab-step-ring {
    border-color: rgba(249,115,22,0.4);
    transform: scale(1.3);
    animation: ab-ring-pulse 2s ease-in-out infinite;
}
@keyframes ab-ring-pulse {
    0%, 100% { opacity: 1; transform: scale(1.3); }
    50%       { opacity: 0.5; transform: scale(1.5); }
}

.ab-step-icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: none;
}
@media (min-width: 768px) { .ab-step-icon { display: block; } }

.ab-step-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.4rem;
}
.ab-step-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    max-width: 160px;
    margin: 0 auto;
    transition: color 0.3s ease;
}
.ab-step--active .ab-step-content p { color: rgba(255,255,255,0.7); }

/* ---------- 8. CTA ---------- */
.ab-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(249,115,22,0.04) 0%, rgba(255,255,255,1) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.ab-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.ab-cta-quote-mark {
    font-size: 8rem;
    line-height: 0.5;
    color: rgba(249,115,22,0.15);
    font-family: Georgia, serif;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}
.ab-cta-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .ab-cta-quote { font-size: 1.5rem; } }

.ab-cta-highlight {
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}
.ab-cta-company {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}
.ab-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.ab-cta-btn-primary {
    background: rgba(249,115,22,0.15) !important;
    border-color: rgba(249,115,22,0.5) !important;
    color: var(--primary) !important;
}
.ab-cta-btn-outline {
    background: rgba(100,116,139,0.08) !important;
    border-color: rgba(100,116,139,0.3) !important;
    color: var(--foreground) !important;
}
.ab-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* ---------- 1. HERO ---------- */
.ct-hero {
    position: relative;
    background: #0f172a;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
}
.ct-hero-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.ct-hero-diagonal {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 90px;
    background: #f8fafc;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.ct-hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
}
.ct-hero-badges {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 2rem auto 0;
    width: 100%;
    display: flex; flex-wrap: wrap; gap: 1rem;
}
.ct-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.ct-badge--orange {
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.5);
    color: #fdba74;
}
.ct-badge--green {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.4);
    color: #86efac;
}
.ct-badge--blue {
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93c5fd;
}
.ct-badge:hover { transform: translateY(-3px); filter: brightness(1.15); }

/* ---------- 2. MAIN CONTACT SPLIT ---------- */
.ct-main {
    background: #f8fafc;
    padding: 5rem 2rem;
}
.ct-main-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 900px) {
    .ct-main-inner {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

/* Form Card */
.ct-form-wrap {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(249,115,22,0.06);
}
.ct-form-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.4rem;
    margin-top: 0.5rem;
}
.ct-form-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
}
.ct-form { display: flex; flex-direction: column; gap: 1.25rem; }

/* Fields */
.ct-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ct-field--textarea { align-items: flex-start; }
.ct-field--focused,
.ct-field:focus-within {
    border-color: rgba(249,115,22,0.5);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
    background: #fff;
}
.ct-field-icon {
    display: flex; align-items: center; justify-content: center;
    width: 46px; min-width: 46px;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.ct-field--focused .ct-field-icon,
.ct-field:focus-within .ct-field-icon { color: var(--primary); }

.ct-field-icon--top { margin-top: 14px; align-self: flex-start; }

.ct-field input,
.ct-field select,
.ct-field textarea {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0.9rem 0.9rem 0.9rem 0;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    width: 100%;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #94a3b8; }
.ct-field select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.ct-field select option { color: var(--foreground); background: #fff; }

.ct-field--select .ct-select-arrow {
    position: absolute; right: 14px;
    color: var(--muted); font-size: 0.75rem;
    pointer-events: none; transition: transform 0.3s ease;
}
.ct-field--select:focus-within .ct-select-arrow { transform: rotate(180deg); color: var(--primary); }

.ct-field textarea { resize: vertical; min-height: 110px; }

/* Sliding bottom bar animation */
.ct-field-bar {
    position: absolute; bottom: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--primary);
    transition: width 0.35s ease;
}
.ct-field:focus-within .ct-field-bar { width: 100%; }

/* Submit Button */
.ct-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ct-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s ease;
}
.ct-submit:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.ct-submit:hover::before { opacity: 1; }
.ct-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.ct-submit-loading { display: inline-flex; align-items: center; gap: 0.5rem; }

/* Success Message */
.ct-success {
    display: flex; align-items: center; gap: 0.75rem;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #16a34a;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: ct-success-pop 0.5s ease;
}
@keyframes ct-success-pop {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* Info Cards (Right) */
.ct-info-wrap { padding-top: 0.5rem; }
.ct-info-cards { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }

.ct-info-card {
    display: flex; align-items: flex-start; gap: 1rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}
.ct-info-card:hover {
    border-color: rgba(249,115,22,0.25);
    box-shadow: 0 8px 28px rgba(249,115,22,0.08);
    transform: translateX(4px);
}
.ct-info-icon {
    width: 44px; min-width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(249,115,22,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--primary);
    transition: all 0.3s ease;
}
.ct-info-card:hover .ct-info-icon { background: var(--primary); color: #fff; }
.ct-info-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.3rem; }
.ct-info-text p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin: 0; }
.ct-info-link {
    font-size: 0.9rem; font-weight: 600;
    color: var(--primary); text-decoration: none;
    display: block; margin-bottom: 0.2rem;
    transition: color 0.2s;
}
.ct-info-link:hover { color: var(--primary-hover); }

/* WhatsApp Button */
.ct-whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    width: 100%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    position: relative; overflow: hidden;
}
.ct-whatsapp-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.3s ease;
}
.ct-whatsapp-btn:hover { background: #1fbb59; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.35); }
.ct-whatsapp-btn:hover::before { opacity: 1; }
.ct-whatsapp-btn i:first-child { font-size: 1.4rem; }
.ct-wa-arrow { margin-left: auto; transition: transform 0.3s ease; }
.ct-whatsapp-btn:hover .ct-wa-arrow { transform: translateX(5px); }

/* Business Hours */
.ct-hours {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}
.ct-hours-title {
    font-size: 0.9rem; font-weight: 700;
    color: var(--foreground); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.ct-hours-title i { color: var(--primary); }
.ct-hours-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.85rem; color: var(--muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-time { font-weight: 600; color: var(--foreground); }
.ct-hours-closed { font-weight: 600; color: #ef4444; }

/* ---------- 3. MAP ---------- */
.ct-map-section {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}
.ct-map-header { margin-bottom: 2rem; }
.ct-map-sub { color: var(--muted); font-size: 0.95rem; }

.ct-map-wrap {
    position: relative;
    max-width: 1100px; margin: 0 auto;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.ct-map-wrap iframe { display: block; }
.ct-map-accent {
    position: absolute; top: 0; left: 0;
    width: 60px; height: 60px;
    border-top: 4px solid var(--primary);
    border-left: 4px solid var(--primary);
    border-radius: 20px 0 0 0;
    z-index: 10; pointer-events: none;
}
.ct-map-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.ct-map-label i { color: var(--primary); }

/* ---------- 4. QUICK CONNECT ---------- */
.ct-quick {
    padding: 5rem 2rem;
    background: #f8fafc;
    text-align: center;
}
.ct-quick-header { margin-bottom: 3rem; }
.ct-quick-sub { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; }

.ct-quick-grid {
    max-width: 900px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .ct-quick-grid { grid-template-columns: repeat(3, 1fr); }
}

.ct-quick-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.75rem; text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}
.ct-quick-card:hover { transform: translateY(-8px); }

.ct-quick-wa  { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.2); }
.ct-quick-phone { background: rgba(249,115,22,0.07); border-color: rgba(249,115,22,0.2); }
.ct-quick-email { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.2); }

.ct-quick-wa:hover  { background: #25d366; border-color: #25d366; box-shadow: 0 16px 40px rgba(37,211,102,0.3); }
.ct-quick-phone:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 16px 40px rgba(249,115,22,0.3); }
.ct-quick-email:hover { background: #3b82f6; border-color: #3b82f6; box-shadow: 0 16px 40px rgba(59,130,246,0.3); }

.ct-quick-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    transition: all 0.35s ease;
}
.ct-quick-wa .ct-quick-icon  { background: rgba(37,211,102,0.15); color: #16a34a; }
.ct-quick-phone .ct-quick-icon { background: rgba(249,115,22,0.15); color: var(--primary); }
.ct-quick-email .ct-quick-icon { background: rgba(59,130,246,0.15); color: #3b82f6; }

.ct-quick-card:hover .ct-quick-icon { background: rgba(255,255,255,0.2); color: #fff; }

.ct-quick-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--foreground); transition: color 0.3s; }
.ct-quick-card p  { font-size: 0.85rem; color: var(--muted); transition: color 0.3s; }
.ct-quick-card:hover h4, .ct-quick-card:hover p { color: #fff; }

.ct-quick-cta {
    font-size: 0.82rem; font-weight: 600;
    color: var(--muted);
    display: inline-flex; align-items: center; gap: 0.4rem;
    transition: all 0.3s ease;
}
.ct-quick-cta i { transition: transform 0.3s ease; }
.ct-quick-card:hover .ct-quick-cta { color: rgba(255,255,255,0.85); }
.ct-quick-card:hover .ct-quick-cta i { transform: translateX(5px); }

/* ---------- 5. FAQ ---------- */
.ct-faq {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}
.ct-faq-header { margin-bottom: 3rem; }
.ct-faq-sub { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; }

.ct-faq-list {
    max-width: 780px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0.75rem;
    text-align: left;
}
.ct-faq-item {
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ct-faq-item--open {
    border-color: rgba(249,115,22,0.3);
    box-shadow: 0 6px 24px rgba(249,115,22,0.07);
}
.ct-faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: #fff;
    border: none; cursor: pointer;
    font-size: 0.95rem; font-weight: 600;
    color: var(--foreground);
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: background 0.2s ease;
}
.ct-faq-question:hover { background: #fefce8; }
.ct-faq-item--open .ct-faq-question { background: rgba(249,115,22,0.04); color: var(--primary); }

.ct-faq-icon {
    font-size: 0.85rem; flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.35s ease, color 0.3s ease;
}
.ct-faq-item--open .ct-faq-icon { transform: rotate(45deg); color: var(--primary); }

.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}
.ct-faq-item--open .ct-faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}
.ct-faq-answer p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(249,115,22,0.1);
    padding-top: 0.75rem;
}

/* ==========================================================================
   SERVICES PAGES — Shared + Individual
   ========================================================================== */

/* --- Hero (shared, reuses ab-hero style) --- */
.sv-hero {
    position: relative;
    background: #0f172a;
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
}
.sv-hero-glow {
    position: absolute; top: -80px; right: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.sv-hero-glow--right { left: auto; right: -80px; }
.sv-hero-diagonal {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 90px; background: #f8fafc;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.sv-hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
}
.sv-hero-badges {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 2rem auto 0; width: 100%;
    display: flex; flex-wrap: wrap; gap: 1rem;
}

/* Jump Nav Pills (services overview) */
.sv-jump-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.35);
    color: #fdba74; text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.sv-jump-pill:hover {
    background: var(--primary); color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249,115,22,0.3);
}

/* --- Overview Grid Section --- */
.sv-grid-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}
.sv-grid-header { text-align: center; margin-bottom: 3rem; }
.sv-grid-sub { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; }

.sv-cards-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .sv-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sv-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.sv-card {
    position: relative; border-radius: 20px; overflow: hidden;
    min-height: 380px; display: flex; flex-direction: column;
    justify-content: flex-end; text-decoration: none;
    cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sv-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(249,115,22,0.2); }
.sv-card--wide { grid-column: 1 / -1; min-height: 300px; }
@media (min-width: 640px) { .sv-card--wide { min-height: 320px; } }

.sv-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}
.sv-card:hover .sv-card-img { transform: scale(1.06); }

.sv-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.3) 60%, transparent 100%);
    transition: background 0.3s ease;
}
.sv-card:hover .sv-card-overlay {
    background: linear-gradient(to top, rgba(249,115,22,0.55) 0%, rgba(10,15,30,0.35) 60%, transparent 100%);
}

.sv-card-num {
    position: absolute; top: 1.25rem; left: 1.5rem;
    font-size: 1rem; font-weight: 800;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 0.25rem 0.6rem;
    backdrop-filter: blur(4px);
    transition: color 0.3s, border-color 0.3s;
}
.sv-card:hover .sv-card-num { color: var(--primary); border-color: rgba(249,115,22,0.5); }

.sv-card-body { position: relative; z-index: 2; padding: 1.5rem; }

.sv-card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.sv-card-tags span {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 50px;
    padding: 0.2rem 0.65rem; backdrop-filter: blur(4px);
    transition: background 0.3s, color 0.3s;
}
.sv-card:hover .sv-card-tags span { background: rgba(249,115,22,0.2); color: #fdba74; border-color: rgba(249,115,22,0.3); }

.sv-card-title { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.sv-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; margin-bottom: 1rem; }
.sv-card-cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--primary); transition: gap 0.25s ease;
}
.sv-card:hover .sv-card-cta { gap: 0.85rem; }
.sv-card-cta i { transition: transform 0.25s ease; }
.sv-card:hover .sv-card-cta i { transform: translateX(4px); }

/* Why strip */
.sv-why-strip { background: #0f172a; padding: 2.5rem 2rem; }
.sv-why-strip-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem;
}
.sv-why-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 600; }
.sv-why-item i { color: var(--primary); font-size: 1.1rem; }
.sv-why-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* CTA (shared across all service pages) */
.sv-cta {
    padding: 6rem 2rem;
    background: #0f172a;
    position: relative; overflow: hidden; text-align: center;
}
.sv-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.sv-cta-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
    color: #fdba74; border-radius: 50px;
    padding: 0.4rem 1.1rem; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 1.5rem;
    animation: sv-badge-pulse 2.5s ease-in-out infinite;
}
@keyframes sv-badge-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
    50% { box-shadow: 0 0 0 8px rgba(249,115,22,0.08); }
}
.sv-cta-heading { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
@media (min-width: 768px) { .sv-cta-heading { font-size: 3rem; } }
.sv-cta-sub { color: rgba(255,255,255,0.5); font-size: 1rem; margin-bottom: 2.5rem; }
.sv-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.sv-cta-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.75rem; border-radius: 14px;
    font-size: 0.95rem; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease;
}
.sv-cta-orange { background: var(--primary); color: #fff; }
.sv-cta-orange:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(249,115,22,0.4); }
.sv-cta-green { background: #25d366; color: #fff; }
.sv-cta-green:hover { background: #1fbb59; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.35); }
.sv-cta-outline { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.sv-cta-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.sv-cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* --- INTRO SPLIT (individual pages) --- */
.sv-intro { padding: 5rem 2rem; background: #fff; }
.sv-intro-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 3rem; align-items: center;
}
.sv-intro-inner--rev { flex-direction: column; }
@media (min-width: 900px) {
    .sv-intro-inner { flex-direction: row; gap: 5rem; align-items: flex-start; }
    .sv-intro-inner--rev { flex-direction: row-reverse; }
}
.sv-intro-text { flex: 1; }
.sv-intro-visual { flex: 1; display: flex; justify-content: center; }

/* --- TYPES GRID --- */
.sv-types-section { padding: 5rem 2rem; background: #f8fafc; }
.sv-types-header { text-align: center; margin-bottom: 3rem; }
.sv-types-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem;
}
.sv-type-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px; padding: 2rem 1.5rem;
    transition: all 0.35s ease; position: relative; overflow: hidden;
}
.sv-type-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px; background: var(--primary);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.sv-type-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); }
.sv-type-card:hover::after { transform: scaleX(1); }
.sv-type-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; }
.sv-type-card h4 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.sv-type-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* --- CHECKLIST SECTION --- */
.sv-checklist-section { padding: 5rem 2rem; background: #fff; }
.sv-checklist-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width: 900px) { .sv-checklist-inner { flex-direction: row; gap: 5rem; align-items: flex-start; } }
.sv-checklist-left { flex: 1; }
.sv-checklist-right { flex: 1; }
.sv-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.sv-checklist li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; color: var(--foreground); line-height: 1.5;
}
.sv-checklist li i { color: var(--primary); font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }

/* --- COUNTER STRIP (commercial) --- */
.sv-counters-strip { background: linear-gradient(135deg,#0f172a,#1e293b); padding: 4rem 2rem; }
.sv-counters-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
}
.sv-counter-item { text-align: center; min-width: 160px; }
.sv-counter-num { font-size: 3rem; font-weight: 800; color: #fff; display: inline-block; }
.sv-counter-item span { font-size: 2rem; font-weight: 800; color: var(--primary); }
.sv-counter-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* --- PROGRESS BARS (infrastructure) --- */
.sv-progress-section { padding: 5rem 2rem; background: #f8fafc; }
.sv-progress-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width: 900px) { .sv-progress-inner { flex-direction: row; gap: 5rem; align-items: flex-start; } }
.sv-progress-left { flex: 1; }
.sv-progress-right { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.sv-progress-label { display: flex; justify-content: space-between; margin-bottom: 0.4rem; font-size: 0.9rem; font-weight: 600; color: var(--foreground); }
.sv-progress-pct { color: var(--primary); }
.sv-progress-bar { background: rgba(249,115,22,0.1); border-radius: 50px; height: 8px; overflow: hidden; }
.sv-progress-fill {
    height: 100%; width: 0%; border-radius: 50px;
    background: linear-gradient(90deg, var(--primary), #fb923c);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

/* COMPLIANCE (infrastructure) */
.sv-compliance { padding: 3rem 2rem; background: #fff; }
.sv-compliance-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.sv-compliance-title { font-size: 1.2rem; font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; }
.sv-compliance-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.sv-compliance-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2);
    color: var(--foreground); border-radius: 50px; padding: 0.5rem 1.2rem;
    font-size: 0.85rem; font-weight: 600;
    transition: all 0.3s ease;
}
.sv-compliance-badge i { color: var(--primary); }
.sv-compliance-badge:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sv-compliance-badge:hover i { color: #fff; }

/* --- REAL ESTATE BENTO (realestate.php) --- */
.sv-re-services { padding: 5rem 2rem; background: #f8fafc; }
.sv-re-header { text-align: center; margin-bottom: 3rem; }
.sv-re-bento {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .sv-re-bento { grid-template-columns: repeat(2, 1fr); } }
.sv-re-card {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(16px);
    border: 1px solid rgba(249,115,22,0.12); border-radius: 20px;
    padding: 2rem; transition: all 0.35s ease;
}
.sv-re-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.25); }
.sv-re-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; }
.sv-re-card h4 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.sv-re-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS (realestate) */
.sv-how-section { padding: 5rem 2rem; background: #fff; text-align: center; }
.sv-how-inner { max-width: 1000px; margin: 0 auto; }
.sv-how-steps {
    display: flex; flex-direction: column; gap: 2rem;
    margin-top: 3rem; align-items: center;
}
@media (min-width: 768px) { .sv-how-steps { flex-direction: row; align-items: flex-start; justify-content: center; } }
.sv-how-step { flex: 1; max-width: 240px; text-align: center; }
.sv-how-num { font-size: 3rem; font-weight: 800; color: rgba(249,115,22,0.12); line-height: 1; }
.sv-how-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: rgba(249,115,22,0.1); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0.5rem auto 1rem;
    transition: all 0.3s ease;
}
.sv-how-step:hover .sv-how-icon { background: var(--primary); color: #fff; }
.sv-how-step h4 { font-size: 1.1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.sv-how-step p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }
.sv-how-arrow { font-size: 1.5rem; color: rgba(249,115,22,0.3); align-self: center; display: none; }
@media (min-width: 768px) { .sv-how-arrow { display: block; } }

/* TRUST BADGES (realestate) */
.sv-trust-section { padding: 4rem 2rem; background: #f8fafc; text-align: center; }
.sv-trust-inner { max-width: 900px; margin: 0 auto; }
.sv-trust-title { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 2rem; }
.sv-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.sv-trust-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #fff; border: 1px solid rgba(249,115,22,0.15);
    border-radius: 12px; padding: 0.75rem 1.25rem;
    font-size: 0.9rem; font-weight: 600; color: var(--foreground);
    transition: all 0.3s ease;
}
.sv-trust-badge i { color: var(--primary); }
.sv-trust-badge:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
.sv-trust-badge:hover i { color: #fff; }

/* --- PROPERTY CATEGORIES (flats-land.php) --- */
.sv-categories-section { padding: 5rem 2rem; background: #f8fafc; }
.sv-cat-header { text-align: center; margin-bottom: 3rem; }
.sv-cat-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .sv-cat-grid { grid-template-columns: repeat(3, 1fr); } }
.sv-cat-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}
.sv-cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); }
.sv-cat-img {
    height: 180px; background-size: cover; background-position: center;
    transition: transform 0.6s ease;
}
.sv-cat-card:hover .sv-cat-img { transform: scale(1.04); }
.sv-cat-body { padding: 1.5rem; }
.sv-cat-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }
.sv-cat-body h4 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.sv-cat-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.sv-cat-link { font-size: 0.82rem; font-weight: 600; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.sv-cat-link:hover { gap: 0.75rem; }

/* LISTINGS (flats-land.php) */
.sv-listings { padding: 5rem 2rem; background: #fff; }
.sv-list-header { text-align: center; margin-bottom: 3rem; }
.sv-list-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .sv-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sv-list-grid { grid-template-columns: repeat(4, 1fr); } }
.sv-list-card {
    background: #fff; border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07); transition: all 0.35s ease;
}
.sv-list-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); }
.sv-list-img { position: relative; height: 180px; overflow: hidden; }
.sv-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sv-list-card:hover .sv-list-img img { transform: scale(1.05); }
.sv-list-badge {
    position: absolute; top: 10px; left: 10px;
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.3rem 0.75rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; backdrop-filter: blur(6px);
}
.sv-badge-house { background: rgba(249,115,22,0.85); color: #fff; }
.sv-badge-land { background: rgba(34,197,94,0.85); color: #fff; }
.sv-list-body { padding: 1.25rem; }
.sv-list-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.4rem; }
.sv-list-loc { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.75rem; }
.sv-list-loc i { color: var(--primary); }
.sv-list-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.sv-list-meta i { color: var(--primary); margin-right: 0.2rem; }
.sv-list-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--primary); text-decoration: none; transition: gap 0.2s; }
.sv-list-cta:hover { gap: 0.75rem; }
