/* ===================================
   CICARIAS REAL ESTATE - MAIN STYLES
   Ultra Professional & Luxury Design
   =================================== */

:root {
    /* Colors - Logo Palette (Verde Oscuro + Dorado) */
    --color-black: #0f261d;
    --color-dark: #1a3a2e;
    --color-dark-green: #1a3a2e;
    --color-green-dark: #0f261d;
    --color-gray-dark: #2a2a2a;
    --color-gray: #6b6b6b;
    --color-gray-light: #e5e5e5;
    --color-white: #ffffff;
    --color-cream: #f8f6f3;
    --color-gold: #c9a961;
    --color-gold-dark: #a88845;
    --color-gold-light: #d4b87d;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-width: 1400px;
    --section-padding: 140px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
}

/* ===================================
   RESET & BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ===================================
   CONTAINER
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-gray-light);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 24px 0;
}

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

.logo img{
    height: 50px;
}

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

.nav-menu li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-dark);
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta .btn-contact {
    padding: 12px 32px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 2px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-cta .btn-contact:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition-fast);
}

/* ===================================
   HERO
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0f261d 0%, #1a3a2e 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="g1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23c9a961;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23c9a961;stop-opacity:0"/></linearGradient></defs><rect fill="url(%23g1)" width="1200" height="800"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-title .elite {
    color: var(--color-gold);
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

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

.hero-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

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

.btn-dark:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-3px);
}

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

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 0;
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 80px;
}

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

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

.section-title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    max-width: 700px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ===================================
   MARKETS
   =================================== */
.markets {
    background: var(--color-cream);
}

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

.market-card {
    background: var(--color-white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    box-shadow: var(--shadow-sm);
}

.market-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.market-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.market-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.market-content {
    padding: 40px;
    position: relative;
}

.market-flag {
    position: absolute;
    top: -40px;
    right: 40px;
    width: 60px;
    height: 40px;
    background: var(--color-white);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border-radius: 2px;
}

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

.market-content h3 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.market-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.market-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.market-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-light);
}

.market-stats span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-stats i {
    color: var(--color-gold);
}

.market-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.market-card:hover .market-cta {
    color: var(--color-gold);
}

.market-card:hover .market-cta i {
    transform: translateX(5px);
}

.market-cta i {
    transition: transform 0.3s ease;
}

/* ===================================
   ABOUT
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-xl);
}

.badge-icon {
    font-size: 48px;
}

.badge-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.about-features {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 32px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===================================
   SERVICES
   =================================== */
.services {
    background: var(--color-cream);
}

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

.service-card {
    background: var(--color-white);
    padding: 48px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 32px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-black);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-gray);
}

/* ===================================
   CONTACT SECTION - OPTIMIZED
   Sin formulario, centrado y responsivo
   =================================== */

.contact {
    background: var(--color-black);
    color: var(--color-white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact .section-tag {
    display: block;
    margin-bottom: 20px;
}

.contact h2 {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.contact-method:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method:hover .method-icon {
    background: var(--color-white);
    transform: scale(1.1);
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.method-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    word-break: break-word;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   RESPONSIVE - CONTACT SECTION
   =================================== */

/* Tablets */
@media (max-width: 968px) {
    .contact h2 {
        font-size: 42px;
    }
    
    .contact-description {
        font-size: 17px;
        margin-bottom: 56px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 56px;
    }
    
    .contact-method {
        flex-direction: row;
        text-align: left;
        padding: 32px;
    }
    
    .method-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .method-info {
        align-items: flex-start;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .social-links a {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .contact h2 {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .contact-methods {
        gap: 20px;
        margin-bottom: 48px;
    }
    
    .contact-method {
        padding: 28px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .method-info {
        align-items: center;
    }
    
    .method-value {
        font-size: 15px;
    }
    
    .social-links {
        gap: 14px;
        flex-wrap: wrap;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

/* ===================================
   COLUMNA IZQUIERDA: Logo + Matrícula
   =================================== */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand img{
    height: 100px;
    width: 100px;
}

.footer-logo {
    height: 100px;
    width: auto;
}

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

/* MATRÍCULA DESTACADA */
.footer-license {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
}

.license-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.license-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
    line-height: 1;
}

/* ===================================
   COLUMNA DERECHA: Links divididos
   =================================== */
.footer-right {
    display: flex;
    align-items: flex-start;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

/* ===================================
   FOOTER BOTTOM
   =================================== */
.footer-bottom {
    text-align: center;
}

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

.footer-credit {
    font-size: 12px;
}

.footer-credit a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--color-white);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .license-number {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-license {
        padding: 20px;
    }
    
    .license-number {
        font-size: 32px;
    }
    
    .footer-logo {
        height: 80px;
    }
}
/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 92px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 92px);
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-gray-light);
    }
    
    .nav-menu li.nav-cta {
        border: none;
        padding-top: 24px;
    }
    
    .nav-cta .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-badge {
        right: 20px;
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .market-content {
        padding: 32px 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}