/* Variables de colores */
:root {
    --coral-light: #ee8b76;
    --orange: #da5321;
    --red-intense: #a7142a;
    --dark-maroon: #310003;
    --navy-dark: #0d1318;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.25);
}

/* Honeypot field - hidden from users but visible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen reader only - SEO content hidden from visual users */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--navy-dark);
    background-color: var(--white);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Contenedor general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 2px 30px rgba(238, 139, 118, 0.15), 0 1px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(238, 139, 118, 0.2);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 40px rgba(238, 139, 118, 0.2), 0 2px 12px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(238, 139, 118, 0.3);
}

.navbar {
    padding: 0.8rem 0;
    transition: padding 0.4s ease;
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--red-intense);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 3px 6px var(--shadow-light));
}

.header.scrolled .logo-img {
    height: 45px;
}

.logo-img:hover {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 6px 12px var(--shadow-medium));
}

.nav-logo {
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, var(--coral-light), transparent);
    transform: translateY(-50%);
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-light), var(--orange));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--orange);
    background-color: rgba(238, 139, 118, 0.08);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--red-intense);
    background-color: rgba(238, 139, 118, 0.12);
}

.nav-link.active::before {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.nav-toggle:hover {
    background-color: rgba(238, 139, 118, 0.15);
    transform: scale(1.1);
}

.nav-toggle:active {
    transform: scale(0.95);
    background-color: rgba(238, 139, 118, 0.2);
}

.bar {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--red-intense));
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--coral-light) 0%, var(--orange) 50%, var(--red-intense) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-style: italic;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image img:hover {
    transform: scale(1.5) translateY(-5px);
}

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

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

/* Botones */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--orange), var(--red-intense));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(238, 139, 118, 0.3);
    font-family: inherit;
    min-height: 52px;
    min-width: 120px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.header .btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(238, 139, 118, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
    box-shadow: 0 4px 15px rgba(238, 139, 118, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red-intense) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(218, 83, 33, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 83, 33, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--orange);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Secciones generales */
section {
    padding: 80px 0;
}

/* Mobile-first improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link:hover,
    .btn:hover,
    .service-card:hover,
    .category-header:hover,
    .service-icon:hover {
        transform: none !important;
    }
    
    .nav-link:active,
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .service-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease;
    }
    
    .category-header:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-light), var(--orange));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-maroon);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* About Section */
.about {
    background: linear-gradient(135deg, 
        var(--light-gray) 0%, 
        rgba(248, 250, 252, 0.95) 25%,
        rgba(255, 245, 240, 0.8) 50%,
        rgba(252, 248, 245, 0.9) 75%,
        var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(238, 139, 118, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(218, 83, 33, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 74, 0.04) 0%, transparent 60%),
        linear-gradient(45deg, rgba(238, 139, 118, 0.02) 0%, transparent 50%, rgba(218, 83, 33, 0.02) 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* Philosophy Header */
.philosophy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.philosophy-icon {
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(238, 139, 118, 0.3);
    animation: pulse 2s infinite;
}

.philosophy-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.philosophy-header h3 {
    font-size: 2.2rem;
    color: var(--navy-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--red-intense));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Philosophy Quote */
.philosophy-quote {
    position: relative;
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 248, 245, 0.9) 25%,
        rgba(252, 245, 240, 0.95) 50%,
        rgba(255, 250, 248, 0.9) 75%,
        rgba(248, 250, 252, 0.95) 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(238, 139, 118, 0.15),
        0 4px 8px rgba(218, 83, 33, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(238, 139, 118, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(238, 139, 118, 0.3) 0%, 
        rgba(255, 107, 74, 0.2) 50%, 
        rgba(218, 83, 33, 0.25) 100%) 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    overflow: hidden;
}

.philosophy-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(238, 139, 118, 0.06) 60deg,
        rgba(255, 107, 74, 0.04) 120deg,
        transparent 180deg, 
        rgba(218, 83, 33, 0.05) 240deg,
        rgba(238, 139, 118, 0.03) 300deg,
        transparent 360deg);
    animation: rotate 25s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.quote-mark {
    display: none;
}

.main-quote {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1.5;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.main-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 50%, var(--red-intense) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(238, 139, 118, 0.3);
    filter: drop-shadow(0 2px 4px rgba(218, 83, 33, 0.2));
}

.main-quote::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--red-intense) 0%, var(--orange) 50%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(255, 107, 74, 0.3);
    filter: drop-shadow(0 2px 4px rgba(238, 139, 118, 0.2));
}

/* Philosophy Description */
.philosophy-description {
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.philosophy-description p {
    margin-bottom: 1.5rem;
    color: var(--dark-maroon);
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
}

.highlight {
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-light), var(--orange));
    opacity: 0.3;
}

/* Philosophy Values */
.philosophy-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
    width: 100%;
}

.value-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 250, 248, 0.9) 50%,
        rgba(252, 248, 245, 0.95) 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(238, 139, 118, 0.1),
        0 2px 6px rgba(218, 83, 33, 0.05);
    border: 1px solid;
    border-image: linear-gradient(135deg, 
        rgba(238, 139, 118, 0.2) 0%, 
        rgba(255, 107, 74, 0.15) 50%, 
        rgba(218, 83, 33, 0.18) 100%) 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--coral) 0%, 
        var(--orange) 30%, 
        var(--red-intense) 60%, 
        var(--coral-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(238, 139, 118, 0.25),
        0 8px 20px rgba(218, 83, 33, 0.15),
        0 4px 10px rgba(255, 107, 74, 0.1);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 248, 245, 0.95) 50%,
        rgba(252, 245, 240, 0.98) 100%);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
        var(--coral) 0%, 
        var(--orange) 40%, 
        var(--red-intense) 80%, 
        var(--coral-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 12px rgba(238, 139, 118, 0.3),
        0 2px 6px rgba(218, 83, 33, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--coral);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, 
        var(--red-intense) 0%, 
        var(--orange) 40%, 
        var(--coral) 80%, 
        var(--coral-light) 100%);
    box-shadow: 
        0 8px 20px rgba(238, 139, 118, 0.4),
        0 4px 12px rgba(218, 83, 33, 0.3),
        0 2px 6px rgba(255, 107, 74, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h4 {
    font-size: 1rem;
    color: var(--navy-dark);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* About Image with Floating Elements */
.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(238, 139, 118, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element[data-float="1"] {
    width: 20px;
    height: 20px;
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.floating-element[data-float="2"] {
    width: 15px;
    height: 15px;
    top: 60%;
    left: -8px;
    animation-delay: 2s;
}

.floating-element[data-float="3"] {
    width: 25px;
    height: 25px;
    bottom: 20%;
    right: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

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

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

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

/* Services Section */
.services {
    background: linear-gradient(135deg, #fafbfc 0%, var(--light-gray) 50%, #f5f7fa 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(238, 139, 118, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 1;
}

.service-category {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-category:nth-child(1) { animation-delay: 0.2s; }
.service-category:nth-child(2) { animation-delay: 0.4s; }

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(238, 139, 118, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-header:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(238, 139, 118, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(238, 139, 118, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2.2rem;
    color: white;
}

.category-header:hover .category-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 35px rgba(238, 139, 118, 0.4);
}

.category-content h3 {
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.category-content p {
    color: var(--dark-maroon);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(238, 139, 118, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-light), var(--orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(238, 139, 118, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Card Header */
.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(238, 139, 118, 0.1), rgba(218, 83, 33, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--orange);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.card-header h4 {
    font-size: 1.3rem;
    color: var(--navy-dark);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

/* Card Content */
.card-content {
    padding: 0 2rem 1.5rem;
}

.card-content p {
    color: var(--dark-maroon);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Card Footer */
.card-footer {
    padding: 1rem 2rem 2rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(238, 139, 118, 0.1), rgba(218, 83, 33, 0.1));
    color: var(--orange);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(238, 139, 118, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-tag {
    background: linear-gradient(135deg, var(--coral-light), var(--orange));
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, 
        var(--light-gray) 0%, 
        rgba(248, 250, 252, 0.95) 25%,
        rgba(255, 248, 245, 0.9) 50%,
        rgba(252, 248, 245, 0.95) 75%,
        var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(238, 139, 118, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 83, 33, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 250, 248, 0.9) 50%,
        rgba(252, 248, 245, 0.95) 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(238, 139, 118, 0.1);
    border: 1px solid rgba(238, 139, 118, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--coral) 0%, 
        var(--orange) 50%, 
        var(--red-intense) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(238, 139, 118, 0.15);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item h4 {
    color: var(--navy-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.contact-item h4 i {
    color: var(--orange);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.contact-item p {
    color: var(--dark-maroon);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 248, 245, 0.95) 50%,
        rgba(252, 248, 245, 0.98) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.1),
        0 6px 16px rgba(238, 139, 118, 0.12);
    border: 1px solid rgba(238, 139, 118, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 16px;
border: 2px solid rgba(238, 139, 118, 0.3);
border-radius: 12px;
font-size: 1.1rem;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
min-height: 52px;
touch-action: manipulation;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--orange);
box-shadow: 0 0 0 4px rgba(238, 139, 118, 0.25);
transform: translateY(-1px);
background: rgba(255, 255, 255, 0.95);
}

/* Footer */
.footer {
background-color: var(--navy-dark);
color: white;
padding: 3rem 0 1rem;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-section h4 {
margin-bottom: 1rem;
color: var(--coral-light);
}

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

.footer-section ul li {
margin-bottom: 0.5rem;
}

.footer-section a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section a:hover {
color: var(--coral-light);
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
font-size: 1.5rem;
transition: all 0.3s ease;
color: var(--coral-light);
}

.social-links a:hover {
transform: scale(1.2);
color: var(--orange);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid var(--dark-maroon);
color: #bdc3c7;
}

/* Touch targets and mobile optimization */
.btn, .nav-link, .nav-toggle {
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}

/* Improved mobile spacing */
@media (max-width: 768px) {
.container {
padding: 0 16px;
}
  
.hero {
padding: 100px 0 60px;
min-height: 100vh;
}
  
.hero-title {
font-size: 2.5rem;
margin-bottom: 1rem;
line-height: 1.15;
}
  
.hero-subtitle {
font-size: 1.15rem;
margin-bottom: 1rem;
line-height: 1.4;
}
  
.hero-description {
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.6;
}
  
.section-header {
margin-bottom: 3rem;
}
  
.section-header h2 {
font-size: 2rem;
margin-bottom: 1rem;
}
  
.section-header p {
font-size: 1rem;
padding: 0 1rem;
}
  
.nav-menu {
position: fixed;
left: -100%;
top: 0;
flex-direction: column;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
width: 100%;
height: 100vh;
text-align: center;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 0 50px rgba(238, 139, 118, 0.2);
padding: 6rem 2rem 2rem;
gap: 1rem;
justify-content: flex-start;
overflow-y: auto;
}
  
.nav-menu .nav-link {
margin: 0;
padding: 1.2rem 2rem;
border-radius: 16px;
font-size: 1.2rem;
background: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
border: 2px solid rgba(238, 139, 118, 0.2);
min-height: 56px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
letter-spacing: 1px;
}
  
.nav-menu .nav-link:hover,
.nav-menu .nav-link:active {
background: rgba(238, 139, 118, 0.2);
transform: scale(1.02);
box-shadow: 0 8px 25px rgba(238, 139, 118, 0.3);
border-color: rgba(238, 139, 118, 0.4);
}
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 50px rgba(238, 139, 118, 0.2);
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu .nav-link {
        margin: 0;
        padding: 1.2rem 2rem;
        border-radius: 16px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(238, 139, 118, 0.2);
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link:active {
        background: rgba(238, 139, 118, 0.2);
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(238, 139, 118, 0.3);
        border-color: rgba(238, 139, 118, 0.4);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: linear-gradient(90deg, var(--red-intense), var(--orange));
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: linear-gradient(90deg, var(--red-intense), var(--orange));
    }
    
    .nav-toggle.active {
        background-color: rgba(238, 139, 118, 0.15);
        transform: scale(1.1);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 16px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 1rem;
        min-height: 52px;
        min-width: 200px;
        border-radius: 16px;
        font-weight: 700;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 8px;
    }
    
    .services-grid {
        gap: 1.5rem;
        padding: 0 8px;
    }
    
    .contact-content {
        gap: 2.5rem;
        padding: 0 8px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 18px 16px;
        font-size: 1.1rem;
        border-radius: 14px;
        min-height: 56px;
        border-width: 2px;
    }
    
    .form-group textarea {
        min-height: 160px;
        line-height: 1.6;
    }
    
    .contact-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        border: 1px solid rgba(238, 139, 118, 0.1);
        margin: 0 auto;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .contact-item {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        justify-content: center;
        margin-bottom: 0.6rem;
    }

    .contact-item h4 i {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .form-group input,
    .form-group textarea {
        padding: 18px 16px;
        font-size: 1rem;
        border-radius: 12px;
        min-height: 56px;
        border-width: 2px;
    }

    .form-group textarea {
        min-height: 140px;
        line-height: 1.5;
        resize: vertical;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.8rem;
    }
    
    .category-content h3 {
        font-size: 1.5rem;
    }
    
    .category-content p {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
    }
    
    .card-content {
        padding: 0 1.5rem 1rem;
    }
    
    .card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    /* About section mobile fixes */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-left {
        order: 1;
    }
    
    .about-right {
        order: 2;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .philosophy-header {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .philosophy-icon {
        width: 50px;
        height: 50px;
    }
    
    .philosophy-icon i {
        font-size: 1.5rem;
    }
    
    .philosophy-header h3 {
        font-size: 1.6rem;
        margin: 0;
    }
    
    .philosophy-quote {
        padding: 2rem 1rem;
        margin: 1.5rem 0;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
    }
    
    .philosophy-quote::before {
        animation-duration: 30s;
    }
    
    .main-quote {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .main-quote::before {
        top: -10px;
        left: -15px;
        font-size: 2.5rem;
    }
    
    .main-quote::after {
        bottom: -25px;
        right: -10px;
        font-size: 2.5rem;
    }
    
    .philosophy-description {
        margin: 1.5rem 0;
    }
    
    .philosophy-description p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .value-card h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .value-icon i {
        font-size: 1.2rem;
    }
    
    .image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 90px 0 50px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header.scrolled .logo-img {
        height: 35px;
    }

    section {
        padding: 50px 0;
    }

    /* Contact section mobile optimizations */
    .contact-content {
        gap: 2rem !important;
    }

    .contact-form {
        padding: 1.5rem 1rem !important;
        border-radius: 12px !important;
        margin-bottom: 1.5rem !important;
    }

    .contact-item {
        padding: 1.2rem 1rem !important;
        border-radius: 10px !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
    }

    .contact-item h4 {
        font-size: 1rem !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .contact-item h4 i {
        font-size: 1.1rem !important;
    }

    .contact-item p {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

    .form-group {
        margin-bottom: 1.2rem !important;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 14px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        min-height: 52px !important;
        border-width: 2px !important;
    }

    .form-group textarea {
        min-height: 120px !important;
        line-height: 1.4 !important;
        resize: vertical !important;
    }

    .btn {
        width: 100% !important;
        padding: 16px 20px !important;
        font-size: 1rem !important;
        min-height: 52px !important;
        border-radius: 10px !important;
    }
    
    /* Services mobile fixes */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .category-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
        padding: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .category-icon {
        width: 50px !important;
        height: 50px !important;
        border-radius: 12px !important;
    }
    
    .category-icon i {
        font-size: 1.5rem !important;
    }
    
    .category-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .category-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .service-card {
        margin: 0 !important;
        border-radius: 12px !important;
    }
    
    .card-header {
        padding: 1.2rem 1rem 0.8rem !important;
        gap: 0.8rem !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .service-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
        margin: 0 auto !important;
    }
    
    .service-icon i {
        font-size: 1.2rem !important;
    }
    
    .card-header h4 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .card-content {
        padding: 0 1rem 1rem !important;
        text-align: center !important;
    }
    
    .card-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .card-footer {
        padding: 0.8rem 1rem 1.2rem !important;
        text-align: center !important;
    }
    
    .service-tag {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 48px;
        min-width: 180px;
        letter-spacing: 0.5px;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .hero-image {
        border-radius: 12px;
        margin-top: 0.5rem;
        max-height: 300px;
        object-fit: cover;
    }
    
    .about-image {
        border-radius: 10px;
        max-height: 250px;
        object-fit: cover;
    }
    
    .nav-menu {
        padding: 5rem 1.5rem 2rem;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item h4 {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section:not(.social-section) {
        display: none;
    }
    
    .social-section {
        order: -1;
    }
    
    .social-links {
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1rem;
    }
    
    .social-links a {
        font-size: 2rem;
        padding: 1rem;
        border-radius: 50%;
        background: rgba(238, 139, 118, 0.1);
        transition: all 0.3s ease;
        min-width: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links a:hover {
        background: rgba(238, 139, 118, 0.2);
        transform: scale(1.1);
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}
