/* ==========================================
   FIBSTONE REALTY - LUXURY CSS
   Ultra-Modern Glassmorphism Design (2026)
   ========================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --color-bg-dark: #0D0F12;
    --color-bg-secondary: #1A1D23;
    --color-bg-card: #1E2229;
    --color-text-primary: #F5F5F5;
    --color-text-secondary: #B8BBC2;
    --color-text-muted: #858A94;
    --color-accent-emerald: #2D7A6C;
    --color-accent-emerald-light: #3A9A87;
    --color-accent-emerald-dark: #246357;
    --color-accent-gold: #C9A869;
    --color-accent-gold-light: #D4B67E;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-hover: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.18);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.35);
    --shadow-glow-emerald: 0 0 40px rgba(45, 122, 108, 0.15);
    --shadow-glow-gold: 0 0 30px rgba(201, 168, 105, 0.2);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: rgba(45, 122, 108, 0.3);
    color: var(--color-text-primary);
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(36px, 5vw, 56px); }
h3 { font-size: clamp(28px, 4vw, 40px); }
h4 { font-size: clamp(24px, 3vw, 32px); }

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

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(13, 15, 18, 0.95);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-accent-emerald), var(--color-accent-emerald-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: white;
    box-shadow: 0 4px 12px rgba(45, 122, 108, 0.3);
}

.logo-text {
    font-size: 14px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-base);
}

/* === BUTTONS === */
.btn-luxury,
.btn-luxury-outline,
.btn-luxury-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--color-accent-emerald), var(--color-accent-emerald-dark));
    color: white;
    box-shadow: 0 4px 16px rgba(45, 122, 108, 0.3);
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 122, 108, 0.5), var(--shadow-glow-emerald);
}

.btn-luxury-outline {
    background: transparent;
    border: 2px solid rgba(201, 168, 105, 0.4);
    color: var(--color-accent-gold);
}

.btn-luxury-outline:hover {
    background: rgba(201, 168, 105, 0.1);
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-glow-gold);
}

.btn-luxury-small {
    padding: 12px 24px;
    font-size: 14px;
    background: linear-gradient(135deg, var(--color-accent-emerald), var(--color-accent-emerald-dark));
    color: white;
}

.btn-ghost-small {
    padding: 10px 20px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--color-text-primary);
    border-radius: 8px;
    transition: all var(--transition-base);
    display: inline-block;
}

.btn-ghost-small:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-emerald);
}

.btn-full {
    width: 100%;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 15, 18, 0.90) 0%,
        rgba(26, 29, 35, 0.75) 50%,
        rgba(13, 15, 18, 0.90) 100%
    );
    backdrop-filter: blur(8px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-lg);
}

.hero-title {
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #F5F5F5, #C9A869);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--color-accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent-emerald);
    border-radius: 2px;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll-down {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

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

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

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-description {
    color: var(--color-text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* === GLASS CARD === */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(201, 168, 105, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow-emerald);
}

/* === FOUNDER SECTION === */
.founder-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-secondary) 100%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.founder-photo-frame {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}

.founder-photo-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 122, 108, 0.3), rgba(201, 168, 105, 0.3));
    opacity: 0;
    transition: opacity var(--transition-slow);
    filter: blur(12px);
}

.founder-photo-frame:hover::before {
    opacity: 1;
}

.founder-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(201, 168, 105, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow-emerald);
    transition: all var(--transition-slow);
}

.founder-photo-frame:hover .founder-photo {
    transform: scale(1.03);
    border-color: rgba(201, 168, 105, 0.6);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(45, 122, 108, 0.25);
}

.founder-name {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--spacing-xs);
}

.founder-title {
    color: var(--color-accent-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.founder-bio p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.founder-credentials {
    margin: var(--spacing-xl) 0;
}

.founder-credentials h3 {
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--color-text-secondary);
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list li::before {
    content: '✓';
    color: var(--color-accent-emerald);
    font-weight: bold;
    margin-right: 12px;
}

.founder-cta {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.founder-social {
    display: flex;
    gap: var(--spacing-sm);
}

/* === PORTFOLIO SECTION === */
.portfolio-section {
    background: var(--color-bg-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 15, 18, 0.95) 0%,
        rgba(13, 15, 18, 0.7) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 24px;
    margin-bottom: var(--spacing-xs);
}

.portfolio-meta {
    color: var(--color-accent-gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.portfolio-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* === TEAM SECTION === */
.team-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-secondary) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.team-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 168, 105, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
}

.team-photo-wrapper:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--color-accent-gold);
}

.team-name {
    font-size: 24px;
    margin-bottom: var(--spacing-xs);
}

.team-role {
    color: var(--color-accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    color: var(--color-text-secondary);
    font-size: 15px;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.team-contact {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* === CONTACT SECTION === */
.contact-section {
    background: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-description {
    color: var(--color-text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-item svg {
    color: var(--color-accent-emerald);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-label {
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-link {
    color: var(--color-text-primary);
    font-size: 18px;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--color-accent-emerald);
}

.contact-text {
    color: var(--color-text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon-large {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-icon-large:hover {
    background: rgba(45, 122, 108, 0.2);
    border-color: var(--color-accent-emerald);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-emerald);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: rgba(45, 122, 108, 0.2);
    border-color: var(--color-accent-emerald);
}

/* === CONTACT FORM === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--color-text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-emerald);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(45, 122, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: var(--spacing-xl);
}

.form-success svg {
    color: var(--color-accent-emerald);
    margin: 0 auto var(--spacing-md);
}

.form-success h3 {
    margin-bottom: var(--spacing-sm);
}

/* === FOOTER === */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter', sans-serif;
}

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

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

.footer-column a {
    color: var(--color-text-secondary);
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

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

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(13, 15, 18, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        transition: left var(--transition-base);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-luxury-small {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .founder-photo-frame {
        width: 280px;
        height: 280px;
    }
    
    .team-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
