/* ===== CSS Variables ===== */
:root {
    --primary: #2d5a3d;
    --primary-light: #3d7a52;
    --primary-dark: #1e3d2a;
    --accent: #c9a961;
    --accent-light: #dfc785;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #868e96;
    --gray-700: #495057;
    --gray-900: #212529;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.header.scrolled .nav-link {
    color: var(--gray-700);
}

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

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--gray-900);
}

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

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

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

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn {
    animation: none;
}

.hero-btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 12px;
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 8px auto 0;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    font-size: 16px;
    padding: 16px 32px;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-header.light .section-badge,
.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-title .highlight {
    color: var(--primary);
}

.section-description {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 16px auto 0;
}

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

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-text {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.about-reference {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-700);
    border-left: 4px solid var(--primary);
}

.about-benefits {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.benefits-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.benefits-list {
    display: grid;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
}

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

/* ===== Lotes Section ===== */
.lotes {
    padding: 100px 0;
    background: var(--off-white);
}

.lotes-grid {
    display: grid;
    gap: 24px;
}

.lote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.lote-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.lote-card.featured {
    border: 2px solid var(--accent);
}

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

.lote-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--gray-900);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.lote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lote-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.lote-manzana {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 6px 12px;
    border-radius: 20px;
}

.lote-size {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.size-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
}

.size-unit {
    font-size: 20px;
    color: var(--gray-500);
    margin-left: 4px;
}

.lote-features {
    margin-bottom: 24px;
}

.lote-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 14px;
}

.lote-features li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.lote-btn {
    width: 100%;
}

/* ===== Plano Section ===== */
.plano {
    padding: 80px 0;
    background: var(--white);
}

.plano-wrapper {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
    margin-bottom: 32px;
}

.plano-img {
    width: 100%;
    border-radius: var(--radius-md);
}

.map-link-wrapper {
    text-align: center;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
}

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

/* ===== Amenities Section ===== */
.amenities {
    padding: 100px 0;
    background: var(--gradient-dark);
}

.amenities-gallery {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

.amenities-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    color: var(--accent);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.amenities-list-extra {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.extra-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
}

.extra-amenities li {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-amenities li::before {
    content: '•';
    color: var(--white);
}

/* ===== Distancias Section ===== */
.distancias {
    padding: 80px 0;
    background: var(--off-white);
}

.distancias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.distancia-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

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

.distancia-time {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    padding: 12px;
    border-radius: var(--radius-sm);
    min-width: 80px;
    text-align: center;
}

.distancia-info h4 {
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.distancia-info h4 svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.distancia-info p {
    font-size: 13px;
    color: var(--gray-500);
}

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

.nearby-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.nearby-text {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.6;
}

.nearby-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.nearby-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--gray-700);
}

.nearby-icon {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

.nearby-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.nearby-logo-item {
    height: 35px;
    display: flex;
    align-items: center;
}

.nearby-logo-item img {
    height: 100%;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nearby-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.nearby-logo-item.sporting {
    font-weight: 900;
    color: #1a1a2e;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    font-style: italic;
    opacity: 0.7;
}

.nearby-logo-item.sporting:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.95) 0%, rgba(30, 61, 42, 0.98) 100%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    margin: 16px 0;
}

.cta-title .highlight {
    color: var(--accent);
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

/* ===== Partners Section ===== */
.partners {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.partners-text {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 50px;
    width: auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

.partners-separator {
    font-size: 24px;
    color: var(--gray-300);
    font-weight: 300;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.footer-legal {
    font-size: 11px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-dark);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes scrollBounce {

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

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

@keyframes pulse {

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

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

/* ===== Mobile Menu ===== */
@media (max-width: 767px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        color: var(--gray-900);
        font-size: 18px;
    }
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

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

    .menu-toggle {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .nearby-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nearby-list {
        grid-template-columns: 1fr 1fr;
    }

    .lotes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .amenities-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .gallery-overlay p {
        display: block;
    }

    .amenities-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
    .header {
        padding: 20px 0;
    }

    .logo-img {
        height: 50px;
    }

    .hero-content {
        padding: 40px;
    }

    .lotes {
        padding: 120px 0;
    }

    .lote-card {
        padding: 40px;
    }

    .amenities {
        padding: 120px 0;
    }

    .amenities-gallery {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 20px;
    }

    .gallery-item.large {
        grid-column: 1;
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .partner-logo {
        height: 60px;
    }
}

/* ===== Privacy & Security Section ===== */
.privacy-security .about-grid {
    align-items: stretch;
}

.security-factor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.security-factor .benefits-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-factor .benefit-icon {
    background: rgba(var(--accent-rgb, 212, 172, 13), 0.2);
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .privacy-security {
        padding: 60px 0 !important;
    }

    .privacy-security .about-grid {
        gap: 32px;
    }
}

/* Savings Comparison */
.savings-comparison {
    grid-column: 1 / -1;
    margin-top: 50px;
    padding: 30px;
    background: #fffbe6;
    border: 1px dashed var(--accent);
    border-radius: var(--radius-md);
    text-align: center;
}

.savings-comparison h4 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.savings-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.savings-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.savings-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.savings-value.highlight {
    color: var(--primary);
}

.savings-badge {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-amount {
    font-size: 1.4rem;
    font-weight: 800;
}

.savings-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Contact Form */
.contact-form {
    transition: transform 0.3s ease;
}

.contact-form:focus-within {
    transform: translateY(-5px);
}

.contact-form input:focus {
    outline: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(228, 174, 58, 0.3);
}

@media (max-width: 768px) {
    .savings-grid {
        gap: 20px;
    }

    .savings-comparison {
        padding: 20px;
    }
}