/* ===================================
   FELIDAE Emporium - Main Stylesheet
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #0a0a0a;
    --color-light: #f5f5f7;
    --color-accent: #e85d04;
    --color-accent-soft: #ff9e00;
    --color-gray: #6e6e73;
    --color-gray-light: #d2d2d7;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   NAVIGATION
   =================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 245, 247, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(245, 245, 247, 0.92);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-dark);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    animation: whatsappDance 6s ease-in-out infinite, whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappDance {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        border-radius: 50%;
    }
    15% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
        border-radius: 40%;
    }
    30% {
        transform: translateY(0) rotate(-5deg) scale(1);
        border-radius: 30%;
    }
    45% {
        transform: translateX(-10px) rotate(0deg) scale(1.1);
        border-radius: 45%;
    }
    60% {
        transform: translateX(10px) rotate(5deg) scale(0.95);
        border-radius: 35%;
    }
    75% {
        transform: translateY(-10px) rotate(-3deg) scale(1.05);
        border-radius: 50%;
    }
    85% {
        transform: rotate(360deg) scale(1.1);
        border-radius: 20%;
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.8), 0 0 0 20px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-float:hover {
    animation: whatsappBounce 0.5s ease;
    transform: scale(1.2) rotate(15deg);
}

@keyframes whatsappBounce {
    0%, 100% { 
        transform: scale(1.2) rotate(15deg); 
    }
    50% { 
        transform: scale(1.3) rotate(-15deg); 
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    margin-top: 64px;
    padding: 100px 24px;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ===================================
   BUTTONS & CTA
   =================================== */

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #d84e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3);
}

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

.btn-outline:hover {
    background: var(--color-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-accent), 
        var(--color-accent-soft), 
        transparent
    );
    animation: sectionLineSlide 3s linear infinite;
}

@keyframes sectionLineSlide {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

.section-bg {
    background: white;
}

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

/* Section Dividers */
.section-divider {
    height: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
    animation: dividerMove 20s linear infinite;
}

.section-divider::after {
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes dividerMove {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    100% { 
        transform: translateX(-50%) translateY(50%); 
    }
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: var(--color-gray-light);
}

/* ===================================
   SERVICE CARDS
   =================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    color: white;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-tagline {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-style: italic;
}

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

/* Service Details - Expandable */
.service-details {
    margin: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
}

.service-details-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-details-title:hover {
    color: var(--color-accent-soft);
}

.service-details-title iconify-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-details-title iconify-icon {
    transform: rotate(180deg);
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    align-items: flex-start;
}

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

.service-list iconify-icon {
    font-size: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-list strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.service-list span {
    display: block;
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.4;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.service-cta:hover {
    gap: 12px;
}

/* ===================================
   PORTFOLIO GALLERY
   =================================== */

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    color: white;
    border-color: transparent;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: #eee;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.filtered-out {
    display: none;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.gallery-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
}

.gallery-desc {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.expand-btn:hover {
    background: #d84e00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3);
}

.expand-btn iconify-icon {
    transition: transform 0.3s ease;
}

.expand-btn.expanded iconify-icon {
    transform: rotate(180deg);
}

/* ===================================
   PRICING CARDS
   =================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.pricing-category {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent-soft);
}

.pricing-desc {
    font-size: 14px;
    color: var(--color-gray-light);
    margin-bottom: 24px;
}

.pricing-list {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-price {
    color: var(--color-accent-soft);
    font-weight: 500;
}

/* ===================================
   FEATURES GRID
   =================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===================================
   CTA BANNER - IMPROVED SHAKE ANIMATION
   =================================== */

.cta-banner-wrapper {
    perspective: 1000px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-soft));
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: ctaBannerShake 10s ease-in-out infinite;
    transform-style: preserve-3d;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg 30deg,
        rgba(255, 255, 255, 0.1) 30deg 60deg
    );
    animation: ctaRotate 20s linear infinite;
}

@keyframes ctaRotate {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* FIXED: Slow sheer stretch animation (3 seconds stretch, then bounce back) */
@keyframes ctaBannerShake {
    0% {
        transform: translate(0, 0) skewX(0deg) skewY(0deg) scale(1, 1);
        border-radius: 24px;
    }
    
    /* Slow stretch phase - 3 seconds (0% to 30% of 10s = 3s) */
    30% {
        transform: translate(8px, 6px) skewX(3deg) skewY(2deg) scale(1.02, 0.98);
        border-radius: 32px 18px 28px 20px;
    }
    
    /* Quick bounce back */
    35% {
        transform: translate(-4px, -3px) skewX(-1.5deg) skewY(-1deg) scale(0.99, 1.01);
        border-radius: 20px 28px 22px 26px;
    }
    
    /* Settle */
    40% {
        transform: translate(1px, 1px) skewX(0.3deg) skewY(0.2deg) scale(1, 1);
        border-radius: 25px 23px 25px 23px;
    }
    
    /* Return to normal */
    45%, 100% {
        transform: translate(0, 0) skewX(0deg) skewY(0deg) scale(1, 1);
        border-radius: 24px;
    }
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   FOOTER
   =================================== */

footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 24px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, white, var(--color-accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    font-size: 14px;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

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

.modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--color-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

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

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

/* Service Features List */
.service-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-gray);
}

.service-features iconify-icon {
    color: var(--color-accent);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service Page Hero */
.service-hero {
    background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
}

/* Detailed Pricing Grid */
.pricing-grid-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-detail {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pricing-card-detail:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.pricing-card-detail h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.pricing-card-detail .price {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.pricing-card-detail p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav .container {
        height: 56px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(245, 245, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 16px;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        margin-top: 56px;
        padding: 60px 24px;
    }

    .section {
        padding: 60px 16px;
    }

    .services-grid,
    .gallery-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-banner {
        padding: 60px 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;      /* Control logo height */
    width: auto;       /* Keeps aspect ratio */
    object-fit: contain;
}
