/* Custom Font Face - Futura Heavy BT */
@font-face {
    font-family: 'Futura Heavy BT';
    src: url('../docs/futura-hv-bt/FuturaHeavyBT.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Heavy BT';
    src: url('../docs/futura-hv-bt/FutuHv.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Heavy BT';
    src: url('../docs/futura-hv-bt/futurahi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1D3227;
    background-color: #EBF1EE;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography - Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header Styles */
.header {
    background-color: #EBF1EE;
    padding: 24px 0;
    position: relative;
    z-index: 1000;
}

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

.nav-logo {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.logo-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #327451;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #B4B4B4;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #327451;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #327451;
}

.nav-link:hover {
    color: #327451;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #5A5A5A;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F5F5F5;
    color: #327451;
}

/* CTA Button */
.nav-cta {
    flex-shrink: 0;
}

.cta-button {
    background-color: #327451;
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #2A5F45;
    transform: scale(1.02);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #327451;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 120px;
    position: relative;
    background-color: #EBF1EE;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    padding: 8px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.hero-badge span {
    font-size: 14px;
    color: #5A5A5A;
    font-weight: 500;
}

.badge-icon {
    width: 20px;
    height: 20px;
}

/* Hero Headline */
.hero-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #1F3E2E;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.headline-paw {
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    position: relative;
    top: -4px;
}

/* Hero Subheadline */
.hero-subheadline {
    font-size: 24px;
    font-weight: 500;
    color: #327451;
    margin-bottom: 24px;
}

/* Hero Description */
.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
    margin-bottom: 32px;
}

/* App Store Buttons */
.app-store-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-link:hover {
    transform: scale(1.05);
}

.app-store-link img {
    height: 48px;
    width: auto;
}

/* Reviews Section */
.reviews-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #FFB800;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    color: #5A5A5A;
}

.review-avatars {
    display: flex;
    align-items: center;
}

.review-avatars img {
    height: 32px;
    width: auto;
}

.rating-score {
    font-size: 16px;
    font-weight: 600;
    color: #1F3E2E;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockups {
    position: relative;
    z-index: 3;
}

.main-phone {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Decorative Elements */
.decoration {
    position: absolute;
}

.decoration.bone {
    top: -40px;
    right: 100px;
    width: 60px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.decoration.paw-1 {
    bottom: 40px;
    left: -40px;
    width: 80px;
    height: auto;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite 0.5s;
}

.decoration.paw-2 {
    top: 50%;
    right: -20px;
    width: 60px;
    height: auto;
    opacity: 0.5;
    animation: float 3.5s ease-in-out infinite 1s;
}

/* Background Dog */
.hero-bg-dog {
    position: absolute;
    bottom: -100px;
    right: -150px;
    width: 400px;
    height: auto;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        align-items: center;
        order: 1;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-center {
        order: 2;
        width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .footer-right {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .footer-social {
        gap: 15px;
    }

    .social-link {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 80px 24px 24px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    color: #5A5A5A;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #E5E5E5;
    transition: color 0.2s ease;
}

.mobile-nav-link.active {
    color: #327451;
}

.mobile-nav-link:hover {
    color: #327451;
}

.mobile-dropdown-menu {
    padding-left: 24px;
    display: none;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 0;
    color: #737373;
    text-decoration: none;
    font-size: 16px;
}

.mobile-cta-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #327451;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 24px;
}

/* Steps Section - Find Trusted Pet Care In 3 Easy Steps */
.steps-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Steps Header */
.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1F3E2E;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Steps Flow Container */
.steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Step Cards */
.step-card {
    position: relative;
    flex: 0 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.step-card-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    border-radius: 24px;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 12px 40px rgba(50, 116, 81, 0.15));
}

/* Step Number */
.step-number {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 48px;
    font-weight: 700;
    color: #D4E4DC;
    opacity: 0.5;
    line-height: 1;
}

/* Step Image */
.step-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Step Title */
.step-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #737373;
    margin: 0;
}

/* Step Arrows */
.step-arrow {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -20px;
    z-index: 1;
}

.arrow-image {
    width: 60px;
    height: auto;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile Responsive for Steps Section */
@media (max-width: 1024px) {
    .steps-flow {
        gap: 20px;
    }
    
    .step-card-image {
        max-width: 280px;
    }
    
    .arrow-image {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-container {
        padding: 0 24px;
    }
    
    .steps-header {
        margin-bottom: 50px;
    }
    
    .steps-title {
        font-size: 36px;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .step-card-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: -15px auto;
        width: fit-content;
        align-self: center;
    }
    
    .arrow-image {
        width: 45px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 40px 0;
    }
    
    .steps-container {
        padding: 0 16px;
    }
    
    .steps-title {
        font-size: 28px;
    }
    
    .steps-title .title-paw {
        width: 30px;
        height: 30px;
    }
    
    .steps-flow {
        gap: 15px;
    }
    
    .step-card {
        max-width: 280px;
    }
    
    .step-card-image {
        border-radius: 16px;
    }
    
    .step-arrow {
        margin: -10px auto;
    }
    
    .arrow-image {
        width: 35px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

/* Fade In Scale Animation */
.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for steps */
.step-1.visible {
    transition-delay: 0.1s;
}

.step-2.visible {
    transition-delay: 0.3s;
}

.step-3.visible {
    transition-delay: 0.5s;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F8F6 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 212, 202, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1F3E2E;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.title-paw {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.services-subtitle {
    font-size: 18px;
    color: #737373;
    font-weight: 400;
}

/* Services Flow Container */
.services-flow {
    position: relative;
    min-height: 800px;
    margin-bottom: 80px;
}

/* Connector Lines SVG */
.connector-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.service-path {
    stroke-dasharray: 5, 5;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -100;
    }
}

/* Service Cards */
.service-card {
    position: absolute;
    background: #D4E4DC;
    border-radius: 100px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    max-width: 480px;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(50, 116, 81, 0.15);
    background: #C8D5D1;
}

/* Service Card Positions - Infographic Layout */
.service-1 {
    top: 80px;
    left: 0;
}

.service-2 {
    top: 80px;
    right: 0;
}

.service-3 {
    top: 320px;
    left: 0;
}

.service-4 {
    top: 320px;
    right: 0;
}

.service-5 {
    top: 560px;
    left: 50%;
    transform: translateX(-50%);
}

.service-5:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.02);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Service Content */
.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1F3E2E;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5A5A5A;
}

/* Services Footer */
.services-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F3E2E;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
}

/* We Love All Pets Section */
.love-pets-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FAFBFA 0%, #EFF5F2 100%);
    position: relative;
    overflow: hidden;
}

.love-pets-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    position: relative;
}

/* Decorative Paw Elements */
.paw-decoration {
    position: absolute;
    opacity: 0.5;
    animation: float 4s ease-in-out infinite;
}

.paw-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.paw-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
}

.paw-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

/* Love Pets Content */
.love-pets-content {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.love-pets-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1F3E2E;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.love-pets-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
}

/* Pet Images Container */
.pet-images-container {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.pet-images {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    animation: fadeInUp 1s ease forwards;
}

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

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.service-1 {
    transition-delay: 0.1s;
}

.service-2 {
    transition-delay: 0.2s;
}

.service-3 {
    transition-delay: 0.3s;
}

.service-4 {
    transition-delay: 0.4s;
}

.service-5 {
    transition-delay: 0.5s;
}

/* Why Fizgig Section */
.why-fizgig-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.why-fizgig-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Why Fizgig Header */
.why-fizgig-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-fizgig-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1F3E2E;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Features Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Feature Cards */
.why-feature-card {
    text-align: center;
    padding: 0;
    transition: transform 0.3s ease;
}

.why-feature-card:hover {
    transform: translateY(-5px);
}

/* Feature Image Wrapper */
.feature-image-wrapper {
    width: 240px;
    height: 240px;
    margin: 0 auto 32px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-feature-card:hover .feature-image {
    transform: scale(1.05);
}

/* Feature Title */
.feature-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1F3E2E;
    margin-bottom: 16px;
}

/* Feature Description */
.feature-description {
    font-size: 14px;
    line-height: 1.8;
    color: #737373;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
}

/* Store Download Section */
.store-download-section {
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    min-height: 700px;
}

.store-download-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Curved Background */
.curved-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 0;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: #6B9F7F;
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: #8BB89C;
    top: 40%;
    right: 15%;
    animation: float 8s ease-in-out infinite 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #A5C7B3;
    bottom: 30%;
    left: 5%;
    animation: float 7s ease-in-out infinite 1s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: #6B9F7F;
    bottom: 20%;
    right: 10%;
    animation: float 5s ease-in-out infinite 3s;
}

/* Content Grid */
.download-content-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Download Left Content */
.download-left {
    padding-top: 40px;
}

.download-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1F3E2E;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: scale(1.05);
}

.store-button img {
    height: 56px;
    width: auto;
}

/* Download Rating */
.download-rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    color: #FFB800;
    font-size: 22px;
}

.rating-text {
    font-size: 16px;
    color: #737373;
}

/* Download Right - Phone Mockups */
.download-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phones-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.phone-mockups {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    animation: floatPhones 4s ease-in-out infinite;
}

@keyframes floatPhones {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #FFFFFF;
    position: relative;
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Team Header */
.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1F3E2E;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    justify-items: center;
}

/* Team Member */
.team-member {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

/* Member Image Wrapper */
.member-image-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}

/* Member Image */
.member-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Special Border Effect */
.member-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #327451, #6B9F7F, #A5C7B3);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.member-border::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border-radius: 50%;
    background: #FFFFFF;
}

/* Hover Effects */
.team-member:hover .member-border {
    opacity: 1;
    transform: rotate(45deg);
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

/* Different border colors for variety */
.team-member:nth-child(4n+1) .member-border {
    background: linear-gradient(135deg, #327451, #6B9F7F);
}

.team-member:nth-child(4n+2) .member-border {
    background: linear-gradient(135deg, #6B9F7F, #A5C7B3);
}

.team-member:nth-child(4n+3) .member-border {
    background: linear-gradient(135deg, #A5C7B3, #327451);
}

.team-member:nth-child(4n) .member-border {
    background: linear-gradient(135deg, #8BB89C, #327451);
}

/* Member Name */
.member-name {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1F3E2E;
    margin-bottom: 8px;
}

/* Member Role */
.member-role {
    font-size: 14px;
    color: #737373;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #F5F8F6;
    position: relative;
    overflow: visible;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Contact Left Side */
.contact-left {
    position: relative;
}

.contact-content {
    margin-bottom: 80px;
}

.contact-title {
    font-size: 52px;
    font-weight: 800;
    color: #1F3E2E;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 17px;
    line-height: 1.7;
    color: #666666;
    max-width: 480px;
}

/* Contact Image Wrapper */
.contact-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.image-circle-bg {
    position: relative;
    width: 400px;
    height: 400px;
    background: #6B9F7F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.decorative-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: white;
    opacity: 0.6;
}

.line-1 {
    width: 60px;
    height: 4px;
    top: 15%;
    left: -30px;
    border-radius: 2px;
}

.line-2 {
    width: 80px;
    height: 4px;
    bottom: 25%;
    right: -40px;
    border-radius: 2px;
}

.dots {
    position: absolute;
    top: 18%;
    right: 10%;
    color: white;
    font-size: 24px;
    letter-spacing: 4px;
    opacity: 0.8;
}

/* Review Cards */
.review-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 300px;
    z-index: 10;
}

.review-1 {
    top: 10%;
    right: -80px;
}

.review-2 {
    bottom: 15%;
    left: -60px;
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: #1F3E2E;
    margin-bottom: 4px;
}

.review-text {
    font-size: 13px;
    color: #666666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-stars .star {
    color: #FFC107;
    font-size: 16px;
}

/* Decorative Hearts */
.heart {
    position: absolute;
    z-index: 1;
}

.heart-top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.heart-left {
    left: -15px;
    top: 40%;
    transform: translateY(-50%);
}

.heart-right {
    right: -15px;
    top: 55%;
    transform: translateY(-50%);
}

.heart-bottom {
    bottom: -10px;
    right: 25%;
}

/* Contact Right Side - Form */
.contact-right {
    position: relative;
}

.form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    resize: none;
    transition: all 0.3s ease;
    background: #FAFAFA;
    color: #333;
}

.form-textarea:focus {
    outline: none;
    border-color: #327451;
    background: #FFFFFF;
}

.form-textarea::placeholder {
    color: #999999;
    font-size: 15px;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
    color: #333;
}

.form-input:focus {
    outline: none;
    border-color: #327451;
    background: #FFFFFF;
}

.form-input::placeholder {
    color: #999999;
    font-size: 15px;
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: #4A7C61;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background: #3D6751;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(74, 124, 97, 0.25);
}

/* CAPTCHA Styles */
.captcha-group {
    margin-top: 20px;
}

.captcha-container,
.captcha-container-feedback {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.captcha-question {
    font-size: 18px;
    font-weight: 600;
    color: #327451;
    min-width: 100px;
}

.captcha-input,
.captcha-input-feedback {
    width: 100px !important;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* Modal form CAPTCHA */
.form-input-modal.captcha-input {
    background: white;
    border: 2px solid #327451;
}

.form-input-modal.captcha-input:focus {
    border-color: #327451;
    box-shadow: 0 0 0 3px rgba(50, 116, 81, 0.1);
}

/* Feedback form CAPTCHA */
.form-input.captcha-input-feedback {
    background: white;
    border: 2px solid #327451;
    padding: 10px;
    border-radius: 6px;
}

.form-input.captcha-input-feedback:focus {
    outline: none;
    border-color: #327451;
    box-shadow: 0 0 0 3px rgba(50, 116, 81, 0.1);
}

/* Responsive CAPTCHA */
@media (max-width: 480px) {
    .captcha-container,
    .captcha-container-feedback {
        flex-direction: column;
        text-align: center;
    }
    
    .captcha-question {
        margin-bottom: 10px;
    }
    
    .captcha-input,
    .captcha-input-feedback {
        width: 100% !important;
    }
}

/* Footer Section */
.footer-section {
    background: #FFFFFF;
    padding: 60px 0;
    border-top: 1px solid #E8E8E8;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Footer Left - Logo and Copyright */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    position: relative;
}

.footer-logo {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
    text-decoration: none;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    line-height: 1;
    display: block;
}

/* Footer Center - Navigation */
.footer-center {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

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

.footer-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-nav-link:hover {
    color: #327451;
}

/* Footer Right - Social Media */
.footer-right {
    display: flex;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Contact Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: #F5F5F5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.modal-close:hover {
    background: #E8E8E8;
    transform: rotate(90deg);
    color: #327451;
}

.modal-header {
    margin-bottom: 32px;
    text-align: center;
}

.modal-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #1F3E2E;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.3px;
}

.form-input-modal,
.form-select-modal,
.form-textarea-modal {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: #FAFAFA;
    transition: all 0.3s ease;
    color: #333;
}

.form-input-modal:focus,
.form-select-modal:focus,
.form-textarea-modal:focus {
    outline: none;
    border-color: #327451;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(50, 116, 81, 0.1);
}

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

.form-select-modal {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-footer {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.form-submit-modal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #327451 0%, #2A5F43 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(50, 116, 81, 0.3);
}

.form-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(50, 116, 81, 0.4);
    background: linear-gradient(135deg, #2A5F43 0%, #327451 100%);
}

.submit-icon {
    transition: transform 0.3s ease;
}

.form-submit-modal:hover .submit-icon {
    transform: translateX(4px);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

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

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 32px;
    }
    
    .hero-container {
        padding: 0 32px;
        gap: 60px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .headline-paw {
        width: 40px;
        height: 40px;
    }
    
    .main-phone {
        max-width: 500px;
    }
    
    /* Steps Section Tablet */
    .steps-container {
        padding: 0 32px;
    }
    
    .steps-flow {
        gap: 30px;
    }
    
    .step-card {
        flex: 0 0 240px;
        padding: 30px 20px;
    }
    
    .step-image {
        width: 160px;
        height: 160px;
    }
    
    .step-arrow {
        margin: 0 -15px;
    }
    
    /* Love Pets Section Tablet */
    .love-pets-container {
        padding: 0 32px;
    }
    
    .love-pets-title {
        font-size: 42px;
    }
    
    .pet-images {
        max-width: 700px;
    }
    
    /* Why Fizgig Section Tablet */
    .why-fizgig-container {
        padding: 0 32px;
    }
    
    .why-features-grid {
        gap: 30px;
    }
    
    .feature-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-description {
        font-size: 13px;
    }
    
    /* Store Download Section Tablet */
    .store-download-section {
        padding: 80px 0 0;
    }
    
    .download-content-grid {
        padding: 0 32px;
        gap: 60px;
    }
    
    .download-title {
        font-size: 48px;
    }
    
    .phone-mockups {
        max-width: 500px;
    }
    
    /* Team Section Tablet */
    .team-container {
        padding: 0 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
    
    .member-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    /* Contact Section Tablet */
    .contact-container {
        padding: 0 32px;
        gap: 60px;
    }
    
    .contact-title {
        font-size: 40px;
    }
    
    .contact-right {
        padding: 36px;
    }
    
    /* Services Section Tablet */
    .services-container {
        padding: 0 32px;
    }
    
    .services-flow {
        min-height: 900px;
    }
    
    .service-card {
        max-width: 400px;
        padding: 20px 24px;
    }
    
    .service-1, .service-3, .service-5 {
        left: 0;
        transform: none;
    }
    
    .service-2, .service-4 {
        right: 0;
    }
    
    .service-5 {
        top: 680px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .nav-container {
        padding: 0 24px;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 40px 0 80px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        margin: 0 auto 24px;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .headline-paw {
        width: 32px;
        height: 32px;
        top: -2px;
    }
    
    .hero-subheadline {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .app-store-buttons {
        justify-content: center;
    }
    
    .reviews-section {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        width: 100%;
    }
    
    .main-phone {
        max-width: 400px;
    }
    
    .decoration {
        display: none;
    }
    
    .hero-bg-dog {
        width: 300px;
        bottom: -50px;
        right: -100px;
    }
    
    /* Steps Section Mobile */
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-container {
        padding: 0 24px;
    }
    
    .steps-title {
        font-size: 32px;
    }
    
    .steps-title br {
        display: none;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 24px;
    }
    
    .step-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 360px;
        padding: 40px 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .step-arrow svg {
        width: 40px;
        height: 60px;
    }
    
    /* Love Pets Section Mobile */
    .love-pets-section {
        padding: 80px 0;
    }
    
    .love-pets-container {
        padding: 0 24px;
    }
    
    .love-pets-title {
        font-size: 32px;
    }
    
    .love-pets-description {
        font-size: 14px;
    }
    
    .pet-images-container {
        margin-top: 40px;
    }
    
    .pet-images {
        max-width: 100%;
    }
    
    .paw-decoration {
        opacity: 0.3;
    }
    
    .paw-1 {
        width: 60px;
        height: 60px;
    }
    
    .paw-2 {
        width: 50px;
        height: 50px;
    }
    
    .paw-3 {
        width: 70px;
        height: 70px;
    }
    
    /* Why Fizgig Section Mobile */
    .why-fizgig-section {
        padding: 60px 0;
    }
    
    .why-fizgig-container {
        padding: 0 24px;
    }
    
    .why-fizgig-title {
        font-size: 32px;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-feature-card {
        max-width: 380px;
        margin: 0 auto;
    }
    
    .feature-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    /* Store Download Section Mobile */
    .store-download-section {
        padding: 60px 0 0;
        min-height: 600px;
    }
    
    .download-content-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
        text-align: center;
    }
    
    .download-left {
        padding-top: 20px;
    }
    
    .download-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .store-button img {
        height: 48px;
    }
    
    .download-rating {
        align-items: center;
    }
    
    .phone-mockups {
        max-width: 100%;
    }
    
    .curved-bg {
        height: 400px;
    }
    
    .shape {
        display: none;
    }
    
    /* Team Section Mobile */
    .team-section {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 24px;
    }
    
    .team-title {
        font-size: 32px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    .member-image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .member-name {
        font-size: 16px;
    }
    
    .member-role {
        font-size: 12px;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-description {
        font-size: 14px;
    }
    
    .contact-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .review-card {
        min-width: 240px;
        padding: 12px;
    }
    
    .review-1 {
        right: -30px;
    }
    
    .review-2 {
        left: -20px;
    }
    
    .heart {
        display: none;
    }
    
    .contact-right {
        padding: 24px;
        border-radius: 16px;
    }
    
    .form-textarea,
    .form-input {
        padding: 16px;
        font-size: 14px;
    }
    
    .form-submit {
        padding: 16px;
        font-size: 16px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 24px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .services-flow {
        min-height: auto;
        margin-bottom: 60px;
    }
    
    .connector-lines {
        display: none;
    }
    
    .service-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 32px 24px;
    }
    
    .service-card:hover {
        transform: translateY(-2px) !important;
    }
    
    .service-5:hover {
        transform: translateY(-2px) !important;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .service-content h3 {
        font-size: 18px;
    }
    
    .services-footer {
        padding: 0 24px;
    }
    
    .footer-title {
        font-size: 28px;
    }
    
    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Modal Mobile Styles */
    .modal-content {
        padding: 32px 20px;
        width: 95%;
        max-width: none;
    }

    .modal-title {
        font-size: 24px;
    }

    .form-input-modal,
    .form-select-modal,
    .form-textarea-modal {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-submit-modal {
        padding: 14px 28px;
        font-size: 14px;
    }
    .hero-headline {
        font-size: 28px;
    }
    
    .app-store-link img {
        height: 40px;
    }
    
    .main-phone {
        max-width: 320px;
    }
}

/* =============================================
   FEEDBACK SECTION
   ============================================= */
.feedback-section {
    background-color: #E8E8E6;
    padding: 80px 60px;
    min-height: 600px;
}

.feedback-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Feedback Left Side */
.feedback-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feedback-content {
    max-width: 520px;
}

.feedback-title {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2C2C2C;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.feedback-description {
    font-size: 16px;
    line-height: 1.6;
    color: #6B6B6B;
    font-weight: 400;
}

.feedback-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    margin-top: 20px;
}

.feedback-decorative {
    position: absolute;
    color: white;
    font-size: 24px;
}

.feedback-decorative.heart-1 {
    top: 60px;
    left: 50px;
}

.feedback-decorative.heart-2 {
    bottom: 80px;
    left: 40px;
}

.feedback-decorative.heart-3 {
    top: 90px;
    right: 50px;
}

.feedback-decorative.dots {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.feedback-decorative.line-1 {
    top: 50%;
    left: 30px;
    width: 40px;
    height: 2px;
    background-color: white;
}

.feedback-decorative.line-2 {
    bottom: 100px;
    right: 60px;
    width: 40px;
    height: 2px;
    background-color: white;
}

.feedback-decorative.squiggle {
    top: 50%;
    right: 30px;
    font-size: 32px;
    transform: rotate(90deg);
}

.dog-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

.testimonial-card {
    position: absolute;
    bottom: 60px;
    right: -30px;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    min-width: 240px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
}

.testimonial-name {
    font-family: 'Futura Heavy BT', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 2px;
}

.testimonial-text {
    font-size: 11px;
    color: #6B6B6B;
    margin-bottom: 4px;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Feedback Right Side - Form */
.feedback-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

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

.form-input, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #FAFAFA;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #7FA582;
    background-color: white;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #B0B0B0;
    font-size: 15px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 14px;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: #5A7F5E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.form-submit:hover {
    background-color: #4A6F4E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 127, 94, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Feedback Section Responsive */
@media (max-width: 1024px) {
    .feedback-section {
        padding: 60px 40px;
    }

    .feedback-container {
        gap: 60px;
    }

    .feedback-title {
        font-size: 40px;
    }

    .feedback-image-wrapper {
        width: 320px;
        height: 320px;
    }

    .dog-image {
        width: 240px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 40px 20px;
    }

    .feedback-container {
        flex-direction: column;
        gap: 40px;
    }

    .feedback-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .feedback-content {
        max-width: 100%;
    }

    .feedback-title {
        font-size: 32px;
    }

    .feedback-image-wrapper {
        width: 280px;
        height: 280px;
        margin: 20px auto;
    }

    .dog-image {
        width: 200px;
        height: 240px;
    }

    .testimonial-card {
        right: -10px;
        bottom: 40px;
        min-width: 200px;
    }

    .feedback-right {
        width: 100%;
    }

    .feedback-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .feedback-title {
        font-size: 28px;
    }

    .feedback-description {
        font-size: 14px;
    }

    .feedback-form-wrapper {
        padding: 24px 20px;
    }

    .form-input, .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-submit {
        padding: 16px;
        font-size: 15px;
    }
}
