/* ============================================
   PAK ZAMEEN REAL ESTATE — Premium Styles
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C9A227;
    --gold-light: #E5C158;
    --gold-dark: #9A7B1A;
    --cream: #FDF6EC;
    --cream-dark: #F5ECD7;
    --brown: #3D2B1F;
    --brown-light: #5C3D2E;
    --brown-dark: #2A1A10;
    --white: #ffffff;
    --off-white: #FAF8F5;
    --text-dark: #1a1a1a;
    --text-muted: #6B6B6B;
    --text-light: #999999;
    --border-color: rgba(61, 43, 31, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.gold {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(201, 162, 39, 0.15);
}

/* Sector name highlight in paragraph */
.hero-text p strong {
    font-weight: 800;
    color: var(--brown);
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

/* Custom cursor removed — using browser default */

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.3);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Ripple Effect ── */
.btn-ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── Premium Button Glow Effect ── */
.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    border-radius: 50%;
    z-index: -1;
}

.btn-glow:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: transform 0s, opacity 0s;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* ── Section Headers ── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar .container {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brown);
}

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

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

.nav-cta {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--brown);
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f0e8d8 0%, #ede4d3 30%, #e8dbc6 60%, #f5eed8 100%);
    padding-top: 100px;
    padding-bottom: 0px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    order: 1;
}

/* ── Text Reveal Animation ── */
.text-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing text removed — using static hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(61, 43, 31, 0.06);
    backdrop-filter: blur(10px);
    color: var(--brown);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 2px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    position: relative;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 162, 39, 0);
    }
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 0 32px;
}

.stat-item:first-child {
    padding-left: 0;
    text-align: left;
}

.stat-item:last-child {
    text-align: left;
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: inherit;
    gap: 2px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
    flex-shrink: 0;
}

.hero-image {
    position: relative;
    order: 2;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brown);
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.badge-border-anim {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: badge-shine 3s linear infinite;
}

@keyframes badge-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-image-badge i {
    color: var(--gold);
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(201, 162, 39, 0.3));
}

.badge-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
}

.badge-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 600;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Mouse Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse {
    width: 26px;
    height: 42px;
    border-radius: 13px;
    border: 2px solid var(--brown);
    position: relative;
    opacity: 0.6;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

.mouse-scroll span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   MARQUEE TICKER
   ============================================ */
.marquee-section {
    background: var(--brown-dark);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 60px;
    /* Instead of auto */
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--brown-dark), transparent);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--brown-dark), transparent);
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Sector items get bigger text and are highlighted */
.marquee-item.sector-focus {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.marquee-item.sector-focus i {
    color: var(--gold);
    font-size: 14px;
}

.marquee-item i {
    color: var(--gold);
    font-size: 13px;
}

.marquee-divider {
    color: var(--gold);
    font-size: 10px;
    opacity: 0.5;
    padding: 0 8px;
}


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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Image Shine Overlay */
.img-overlay-anim {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

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

.exp-number {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    opacity: 0.9;
}

.about-text-col .section-tag {
    display: block;
    margin-bottom: 12px;
}

.about-text-col h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-stats-row {
    display: flex;
    gap: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.about-stat-number {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--brown);
}

.about-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
    padding: 100px 0;
    background: var(--white);
}

.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.founder-image-wrapper {
    position: relative;
    max-width: 380px;
}

.founder-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.founder-img:hover {
    filter: grayscale(0%);
}

.founder-img-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 16px 0 0 0;
    pointer-events: none;
}

.founder-text-col {
    display: flex;
    flex-direction: column;
}

.founder-name-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 12px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
}

.founder-divider {
    font-size: 32px;
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
}

.founder-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
}

.founder-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.founder-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.founder-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--off-white);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brown);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.founder-highlight-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.1);
}

.founder-highlight-item i {
    color: var(--gold);
    font-size: 14px;
}

.founder-sectors {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.founder-sectors-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-sector-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sector-tag {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--off-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.sector-tag.highlighted {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.founder-closing {
    margin-top: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--brown-dark);
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--gold);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.3);
}

/* Card Glow on Hover */
.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.tilt-card:hover .card-glow {
    opacity: 1;
}

.about-card>*:not(.card-glow) {
    position: relative;
    z-index: 1;
}

/* Icon Float Animation */
.icon-float {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

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

.about-icon i {
    font-size: 26px;
    color: var(--brown);
    transition: var(--transition);
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

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

/* Three Steps with Connectors */
.services-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    flex: 1;
    max-width: 320px;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.08);
    position: absolute;
    top: 10px;
    right: 24px;
    line-height: 1;
    z-index: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    width: 60px;
    flex-shrink: 0;
    color: var(--gold);
    position: relative;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    top: 70px;
}

.step-connector i {
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 4px;
    font-size: 14px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid var(--cream-dark);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon {
    background: var(--brown);
    border-color: var(--brown);
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.25);
}

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

.step-icon i {
    font-size: 28px;
    color: var(--brown);
    transition: var(--transition);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--off-white);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card>*:not(.card-glow) {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--cream-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--brown);
    transform: rotateY(180deg);
}

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

.service-icon i {
    font-size: 22px;
    color: var(--brown);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   SECTORS
   ============================================ */
.sectors {
    padding: 100px 0;
    background: var(--off-white);
}

.sectors-banner-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sectors-text .section-tag {
    display: block;
    margin-bottom: 12px;
}

.sectors-text h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sectors-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.sectors-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sector-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sector-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(201, 162, 39, 0) 40%,
            rgba(201, 162, 39, 0.1) 50%,
            rgba(201, 162, 39, 0) 60%,
            transparent 100%);
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.sector-item:hover::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.sector-item>*:not(.card-glow) {
    position: relative;
    z-index: 1;
}

.sector-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(61, 43, 31, 0.12);
}

.sector-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 4px;
    transition: var(--transition);
}

.sector-item:hover .sector-name {
    color: var(--gold);
    transform: scale(1.05);
}

.sector-desc {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.sector-item.all-cda {
    background: var(--brown);
    border-color: transparent;
}

.sector-item.all-cda:hover {
    background: var(--brown-dark);
    box-shadow: 0 20px 45px rgba(61, 43, 31, 0.4);
}

.sector-item.all-cda .sector-name {
    color: var(--gold-light);
    font-size: 26px;
}

.sector-item.all-cda .sector-desc {
    color: var(--gold-light);
    opacity: 0.7;
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.premium-cta-section {
    padding: 100px 0;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.premium-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.premium-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
}

.premium-cta-content h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.premium-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-premium-cta {
    background: var(--gold);
    color: var(--brown-dark);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    transition: all 0.4s ease;
}

.btn-premium-cta:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    color: var(--brown-dark);
}

.btn-premium-cta i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .premium-cta-content h2 {
        font-size: 32px;
    }

    .premium-cta-section {
        padding: 70px 0;
    }
}

.wa-inquiry-form button {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-inquiry-form button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

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

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

.contact-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 36px;
}

.contact-details {
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--brown);
    color: var(--gold-light);
    box-shadow: 0 8px 20px rgba(61, 43, 31, 0.25);
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Magnetic Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    font-size: 15px;
}

.social-links a:hover {
    background: var(--brown);
    color: var(--white);
    border-color: var(--brown);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 25px rgba(61, 43, 31, 0.25);
}

.contact-map-wrapper {
    background: var(--off-white);
    padding: 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
    width: 85%;
    max-width: 320px;
}

.map-info {
    flex: 1;
}

.map-info h4 {
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    margin-bottom: 4px;
}

.map-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.map-directions-btn {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.map-directions-btn:hover {
    background: var(--brown);
    transform: scale(1.1);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--brown-dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer .social-links a {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.footer .social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
}

.footer-links h4,
.footer-sectors h4,
.footer-contact h4 {
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-sectors ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact ul li i {
    color: var(--gold-light);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* ============================================
   3D TILT CARD PERSPECTIVE
   ============================================ */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding-top: 90px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image-wrapper img {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        margin: 0 auto 30px;
        max-width: 500px;
    }

    .hero-text p strong {
        font-size: 17px;
    }

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

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

    .hero-image-badge {
        display: none;
    }

    /* About */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about-description {
        margin: 0 auto 30px;
        max-width: 500px;
    }

    .about-stats-row {
        justify-content: center;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -10px;
    }

    /* Founder */
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-image-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .founder-name-row {
        justify-content: center;
    }

    .founder-highlights {
        justify-content: center;
    }

    .founder-sectors {
        justify-content: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    /* Sectors */
    .sectors-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Premium CTA */
    .premium-cta-content h2 {
        font-size: 36px;
    }

    .premium-cta-content p {
        font-size: 16px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-info .section-header {
        text-align: center !important;
    }

    .contact-details {
        max-width: 350px;
        margin: 0 auto 30px;
    }

    .social-links {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    /* Navbar mobile drawer */
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        padding: 0 16px;
    }

    .logo-text {
        display: flex;
    }

    .logo-name {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-text p strong {
        font-size: 15px;
    }

    .hero-image-wrapper img {
        max-width: 280px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .about-text-col h2 {
        font-size: 28px;
    }

    .sectors-text h2 {
        font-size: 28px;
    }

    /* Founder */
    .founder-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .founder-image-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }

    .founder-name-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .founder-name {
        font-size: 26px;
    }

    .founder-highlights {
        justify-content: center;
    }

    .founder-sectors {
        justify-content: center;
    }

    /* Section subtitle */
    .section-subtitle {
        font-size: 13px;
    }

    /* About Cards — compact */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card {
        padding: 20px 18px;
    }

    .about-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .about-icon i {
        font-size: 20px;
    }

    .about-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .about-card p {
        font-size: 13px;
        line-height: 1.5;
    }

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

    /* Sectors */
    .sectors-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sector-item {
        padding: 24px 16px;
    }

    .sector-name {
        font-size: 26px;
    }

    /* Premium CTA */
    .premium-cta-section {
        padding: 60px 0;
    }

    .premium-cta-content h2 {
        font-size: 28px;
    }

    .premium-cta-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-premium-cta {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .map-container iframe {
        height: 250px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-brand p {
        font-size: 13px;
        max-width: 320px;
        margin: 0 auto 16px;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer-links h4,
    .footer-sectors h4,
    .footer-contact h4 {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .footer-links ul li a,
    .footer-sectors ul li a {
        font-size: 13px;
    }

    .footer-contact ul li {
        justify-content: center;
        font-size: 13px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    /* Marquee */
    .marquee-section {
        padding: 10px 0;
    }

    .marquee-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 0 14px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image-wrapper img {
        max-width: 240px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    /* About */
    .about-stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .about-image-col img {
        border-radius: 12px;
    }

    /* Sectors */
    .sectors-showcase {
        grid-template-columns: 1fr;
    }

    .sector-name {
        font-size: 28px;
    }

    /* Premium CTA */
    .premium-cta-section {
        padding: 50px 0;
    }

    .premium-cta-content h2 {
        font-size: 24px;
    }

    .btn-premium-cta {
        padding: 14px 28px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn:hover {
    transform: scale(1.05);
}

.wa-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 2;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-tooltip {
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
    margin-right: -10px;
    /* Offset to center slightly over the icon */
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform-origin: bottom right;
    animation: wa-float 3s ease-in-out infinite;
    transform: rotate(-10deg);
}

.wave-icon {
    font-size: 20px;
    animation: wave 2.5s infinite;
    transform-origin: bottom center;
    display: inline-block;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.wa-text {
    /* Formal theme color */
    color: var(--brown);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.2px;
}

.tooltip-arrow {
    position: absolute;
    bottom: -8px;
    right: 35px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    transform: rotate(10deg);
    /* Counteract the parent rotation */
}

@keyframes wa-float {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-8px) rotate(-12deg);
    }
}

@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 16px;
        right: 16px;
    }

    .wa-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .wa-tooltip {
        display: none;
    }
}