* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #a855f7;
    --dark-color: #2D2D2D;
    --light-color: #FFFFFF;
    --background-light: #F8F8F8;
    --text-color: #2D2D2D;
    --gray-color: #555555;
    --border-color: #E5E5E5;
}

body {
    font-family: 'Segoe UI', 'Open Sans', 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 40px;
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
.announcement-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 10px 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.announcement-bar.hidden {
    transform: translateY(-100%);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.announcement-text {
    margin: 0;
}

.announcement-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    right: -2rem;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.announcement-bar p {
    margin: 0;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background-color: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 40px;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 245px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Graphics */
.hero-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-paw,
.floating-bone,
.floating-heart {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatAround 20s infinite ease-in-out;
}

.paw-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.paw-2 {
    top: 15%;
    right: 8%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.paw-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
    font-size: 2rem;
}

.paw-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 6s;
    font-size: 3.5rem;
}

.bone-1 {
    top: 30%;
    left: 15%;
    animation-delay: 3s;
    font-size: 2.5rem;
}

.bone-2 {
    top: 50%;
    right: 10%;
    animation-delay: 5s;
    font-size: 2rem;
}

.heart-1 {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
    font-size: 2.5rem;
}

.heart-2 {
    top: 25%;
    right: 20%;
    animation-delay: 7s;
    font-size: 3rem;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(270deg);
    }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

.trust-badge span:first-child {
    font-size: 1.1rem;
}

.trust-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content h2 .highlight {
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn svg {
    margin-right: 8px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #633a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 80px 40px;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '🐾';
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.services::after {
    content: '🦴';
    position: absolute;
    bottom: 10%;
    left: 3%;
    font-size: 6rem;
    opacity: 0.03;
    transform: rotate(25deg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.7;
    font-size: 1rem;
}

/* Grooming Menu Section */
.grooming-menu {
    padding: 80px 40px;
    background: white;
    position: relative;
    overflow: hidden;
}

.grooming-menu::before {
    content: '✂️';
    position: absolute;
    top: 10%;
    left: 2%;
    font-size: 7rem;
    opacity: 0.03;
    transform: rotate(-20deg);
}

.grooming-menu::after {
    content: '✨';
    position: absolute;
    bottom: 5%;
    right: 8%;
    font-size: 9rem;
    opacity: 0.03;
    transform: rotate(15deg);
}

/* Calculator Wrapper */
.calculator-wrapper {
    max-width: 1100px;
    margin: 0 auto 4rem;
}

/* Step Container */
.step-container {
    display: none;
    margin-bottom: 3rem;
}

.step-container.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-header h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.card-grid.three-col {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Selection Cards */
.selection-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.selection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.selection-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    line-height: 1;
}

.selection-card h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.selection-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    max-width: 100%;
}

/* Service Package Cards */
.service-package-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.service-package-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.package-header-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.package-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.package-title {
    flex: 1;
    min-width: 0;
}

.package-title h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin: 0 0 0.3rem 0;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

.package-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.package-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.package-services li {
    list-style: none;
    font-size: 0.85rem;
    color: var(--gray-color);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    word-wrap: break-word;
}

.package-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Result Display */
.result-display {
    animation: fadeInUp 0.6s ease-out;
}

.result-success {
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    color: white;
    border-radius: 50%;
    font-size: 3rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.result-success h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0;
}

/* Summary Card */
.summary-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.summary-header .package-icon {
    font-size: 3.5rem;
}

.package-info h4 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin: 0 0 0.5rem 0;
}

.package-info p {
    color: var(--gray-color);
    margin: 0;
    font-size: 1rem;
}

.services-list h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.services-list li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.price-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.price-label {
    font-size: 1.2rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.action-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Add-ons Container */
.addons-container {
    max-width: 900px;
    margin: 0 auto;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.addon-checkbox-card {
    position: relative;
    cursor: pointer;
}

.addon-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.addon-card-content {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.addon-checkbox-card:hover .addon-card-content {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.addon-checkbox-card input[type="checkbox"]:checked ~ .addon-card-content {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.addon-checkbox-card input[type="checkbox"]:checked ~ .addon-card-content::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.addon-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.addon-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.addon-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.addon-price-tag {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.addons-summary {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    bottom: 20px;
}

.addons-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.3rem;
    font-weight: 700;
}

.addons-total span:last-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

#continueBtn {
    width: 100%;
}

/* Price Breakdown */
.price-breakdown {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.price-row:first-child {
    padding-top: 0;
}

.price-row span:last-child {
    font-weight: 700;
    color: var(--dark-color);
}

.addons-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.addons-list h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.addons-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.addons-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
    border-bottom: 1px dashed #e8eaf0;
}

.addons-list li:last-child {
    border-bottom: none;
}

.addons-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: white;
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Package Details Modal */
.package-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 500px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-color);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--background-light);
    color: var(--dark-color);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h4 {
    margin-top: 0;
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.package-services-full {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-services-full li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.package-services-full li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.package-services-full li:last-child {
    border-bottom: none;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
}

.category-title {
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    display: inline-block;
    width: auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Add-On Services */
.addon-services {
    margin-top: 4rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.addon-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.addon-item:hover .addon-price {
    color: white;
}

.addon-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.grooming-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-color);
    font-size: 0.95rem;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    margin: 1.5rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary-color);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-description {
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* New Contact Design */
.contact-container--new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-info--new {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-header h3,
.contact-form--new .form-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-subtitle,
.form-subtitle {
    color: var(--gray-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-card-content p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-card-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(102, 126, 234, 0.1);
}

.contact-card-link:hover {
    background: var(--primary-color);
    color: white;
}

.business-hours {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.business-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--gray-color);
}

.contact-form--new {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Google Maps */
.contact-map {
    margin-bottom: 2rem;
}

.contact-map h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.contact-map iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: none;
    width: 100%;
    height: 450px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 40px 20px;
    position: relative;
    overflow: hidden;
}

.footer-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-paw {
    position: absolute;
    font-size: 4rem;
    opacity: 0.05;
}

.f-paw-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
}

.f-paw-2 {
    top: 50%;
    right: 15%;
    transform: rotate(25deg);
}

.f-paw-3 {
    bottom: 20%;
    left: 50%;
    transform: rotate(-30deg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.5);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.call-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 139, 90, 0.4);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Instagram Feed Styles */
.instagram-feed {
    max-width: 1200px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.instagram-media {
    margin: 0 auto !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

.instagram-fallback {
    text-align: center;
    padding: 2rem;
}

.instagram-fallback p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin: 0;
}

.instagram-fallback a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.instagram-fallback a:hover {
    text-decoration: underline;
}

/* Instagram Feed Section */
.instagram-section {
    padding: 80px 40px;
    background: white;
    overflow: hidden;
}

.instagram-section.no-animate {
    /* Ensure no animation interference */
}

.instagram-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.instagram-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.instagram-link:hover::after {
    transform: scaleX(1);
}

.instagram-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-post {
    flex: 0 0 calc(33.333% - 1rem);
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background-light) 0%, #E8E8E8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.post-image-placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .post-overlay {
    opacity: 1;
}

.post-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* View Package Details Button */
.view-details-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
    width: 100%;
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .view-details-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    border-color: var(--border-color);
    color: inherit;
    transform: translateY(-50%);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-color);
}

/* Instagram CTA */
.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

/* FAQ Section */
.faq {
    padding: 60px 20px;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-float {
    animation: bounce 2s infinite;
}

/* Call Float Button */
.call-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.call-icon {
    width: 28px;
    height: 28px;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.newsletter-popup.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.newsletter-popup.show .newsletter-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--gray-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.newsletter-popup h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-popup p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.popup-privacy {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.75rem;
        padding: 8px 1rem;
    }

    .announcement-close {
        right: 0;
        width: 25px;
        height: 25px;
        font-size: 1.5rem;
    }

    .announcement-content {
        gap: 0.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .instagram-feed {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .instagram-section {
        padding: 40px 20px;
    }
    
    .instagram-section::before,
    .instagram-section::after {
        font-size: 4rem;
    }

    /* Mobile Navigation */
    .navbar .container {
        position: relative;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        position: relative;
        z-index: 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInNav 0.4s forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.6s; }

    @keyframes slideInNav {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a::after {
        bottom: 0.5rem;
    }

    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .logo-image {
        height: 49px;
        max-width: 175px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .hero-buttons .btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hero-buttons .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .grooming-packages {
        grid-template-columns: 1fr;
    }

    .calculator-form {
        padding: 2rem;
    }

    .result-actions {
        flex-direction: column;
    }

    .total-price {
        font-size: 2.5rem;
    }

    .card-grid,
    .card-grid.three-col,
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .package-services,
    .services-list ul {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .price-banner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .summary-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-container--new {
        grid-template-columns: 1fr;
    }

    .contact-info--new {
        padding: 1.5rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-form--new {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn-block {
        padding: 12px;
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    /* Instagram Carousel Mobile */
    .instagram-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .instagram-post {
        flex: 0 0 100%;
    }

    .post-stats {
        font-size: 1rem;
        gap: 1.5rem;
    }

    /* Footer Mobile */
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        order: -1;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 20px;
        min-height: 60vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        margin-bottom: 1.2rem;
    }

    .hero-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .floating-paw,
    .floating-bone,
    .floating-heart {
        font-size: 2rem;
    }

    /* Calculator Mobile Optimization */
    .calculator-wrapper {
        padding: 0;
    }

    .step-header {
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .step-header h3 {
        font-size: 1.4rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-grid.three-col {
        grid-template-columns: 1fr;
    }

    .selection-card {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .selection-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .selection-card p {
        font-size: 0.85rem;
    }

    /* Service Cards in Calculator */
    .service-package-card {
        padding: 1.2rem;
    }

    .package-icon {
        font-size: 1.8rem;
    }

    .package-title h4 {
        font-size: 1rem;
    }

    .package-price {
        font-size: 1.2rem;
    }

    .package-services {
        grid-template-columns: 1fr;
    }

    .package-services li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        padding-left: 1.3rem;
    }

    /* Add-ons Mobile */
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .addon-checkbox-card {
        margin-bottom: 0;
    }

    .addon-card-content {
        padding: 1rem;
    }

    .addon-icon {
        font-size: 1.8rem;
    }

    .addon-title {
        font-size: 0.9rem;
    }

    .addon-price-tag {
        font-size: 0.95rem;
    }

    .addons-summary {
        padding: 1.2rem 1.5rem;
        position: sticky;
        bottom: 10px;
    }

    .addons-total {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .addons-total span:last-child {
        font-size: 1.3rem;
    }

    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .call-float {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .call-icon {
        width: 24px;
        height: 24px;
    }

    /* Newsletter Popup Mobile */
    .newsletter-content {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: 95%;
    }

    .newsletter-popup h3 {
        font-size: 1.5rem;
    }

    .popup-icon {
        font-size: 3rem;
    }

    .newsletter-form input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .newsletter-form button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* Pulse animation for important elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-primary:hover {
    animation: pulse 0.5s ease-in-out;
}

/* Float animation for hero features */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-dot {
    animation: float 3s ease-in-out infinite;
}

.feature-item:nth-child(1) .feature-dot { animation-delay: 0s; }
.feature-item:nth-child(2) .feature-dot { animation-delay: 0.3s; }
.feature-item:nth-child(3) .feature-dot { animation-delay: 0.6s; }
.feature-item:nth-child(4) .feature-dot { animation-delay: 0.9s; }

/* Bounce animation for WhatsApp float */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.whatsapp-float {
    animation: bounce 2s infinite;
}
