/* ============================================
   PRADA & PAREDES - SOLUCIONES JURÍDICO EMPRESARIALES
   Hoja de Estilos Principal
   ============================================ */

/* === VARIABLES === */
:root {
    --navy:        #1B2A4A;
    --navy-dark:   #0f1c35;
    --navy-light:  #243b6e;
    --gold:        #C9A03E;
    --gold-light:  #E6C065;
    --gray:        #4A5568;
    --gray-light:  #718096;
    --light-bg:    #F4F6FA;
    --white:       #FFFFFF;
    --text-dark:   #1a202c;
    --border:      #e2e8f0;
    --shadow:      0 4px 20px rgba(27, 42, 74, 0.10);
    --shadow-lg:   0 12px 40px rgba(27, 42, 74, 0.18);
    --transition:  all 0.3s ease;
    --radius:      12px;
    --radius-sm:   8px;
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(201, 160, 62, 0.12);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(201, 160, 62, 0.3);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 160, 62, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1dbb58;
    border-color: #1dbb58;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 18px 0;
}

#navbar.scrolled {
    background: var(--navy-dark);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-badge {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo:hover .logo-badge {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--white);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 8px;
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(201, 160, 62, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    background: var(--navy-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu ul {
    padding: 12px 24px 20px;
}

.mobile-menu ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

.mobile-menu ul li:last-child a {
    border-bottom: none;
}

.mobile-menu ul li a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--navy-dark) 0%,
        var(--navy) 45%,
        #1e3a6e 75%,
        var(--navy-dark) 100%);
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 65px 65px;
}

/* Radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(201, 160, 62, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(36, 59, 110, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 160, 62, 0.13);
    border: 1px solid rgba(201, 160, 62, 0.4);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(0.97rem, 1.8vw, 1.12rem);
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 42px;
    max-width: 610px;
    line-height: 1.85;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 22px 10px;
    width: fit-content;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}

/* Scroll arrow */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2.2s ease infinite;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hero-scroll:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(9px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 160, 62, 0.25);
}

.service-card:hover::after {
    transform: scaleY(1);
}

.service-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.07rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.89rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.84rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--navy);
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius);
    aspect-ratio: 4 / 4.8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-dots {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.about-decorative {
    position: relative;
    z-index: 1;
    font-size: 9rem;
    color: rgba(201, 160, 62, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    border-radius: var(--radius);
    padding: 22px 26px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-cases-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 160, 62, 0.25);
}

.exp-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.exp-text {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.9;
}

.about-title {
    text-align: left;
}

.about-text {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.85;
    font-size: 0.97rem;
}

.about-features {
    margin: 28px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.93rem;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--gold);
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.why-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 65px 65px;
    pointer-events: none;
}

.why-title { color: var(--white); }
.why-subtitle { color: rgba(255, 255, 255, 0.65); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 160, 62, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.why-icon {
    width: 58px;
    height: 58px;
    background: rgba(201, 160, 62, 0.13);
    border: 1px solid rgba(201, 160, 62, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 22px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
}

.contact-info-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gold);
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 160, 62, 0.13);
    border: 1px solid rgba(201, 160, 62, 0.28);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.92rem;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.48);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 500;
    color: var(--white);
    font-size: 0.93rem;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--gold-light);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-schedule {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

.contact-schedule h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-schedule p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 4px;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 42px 38px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.91rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0bec5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%234A5568' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-success {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.4);
    border-radius: var(--radius-sm);
    color: #276749;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MAP
   ============================================ */
.map-section {
    background: var(--light-bg);
}

.map-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 420px;
}

.map-info-panel {
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 44px;
}

.map-info-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(201, 160, 62, 0.15);
    border: 1px solid rgba(201, 160, 62, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}

.map-info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.map-info-content p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    line-height: 1.75;
}

.map-contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.map-contact-detail i {
    color: var(--gold);
    width: 16px;
}

.map-contact-detail a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.map-contact-detail a:hover {
    color: var(--gold-light);
}

.map-embed {
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.85;
    max-width: 290px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 11px;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
    .about-grid { gap: 50px; }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-title { text-align: center; }
    .about-section .section-tag { display: block; text-align: center; }
    .about-visual { max-width: 420px; margin: 0 auto; }
    .about-exp-badge { right: 10px; }
    .about-cases-badge { left: 10px; }
    .contact-grid { grid-template-columns: 1fr; }
    .map-inner { grid-template-columns: 1fr; }
    .map-info-panel { padding: 50px 36px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-stats { width: 100%; justify-content: center; }
    .stat { padding: 0 20px; }
    .stat-number { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrap { padding: 28px 22px; }
    .section-header { margin-bottom: 44px; }
}

@media (max-width: 500px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        padding: 24px 20px;
    }
    .stat-divider { width: 70%; height: 1px; }
    .about-exp-badge, .about-cases-badge {
        position: static;
        display: inline-block;
        margin: 10px;
    }
    .about-visual { text-align: center; }
    .map-info-panel { padding: 40px 24px; }
}
