/* Custom Fonts */
@font-face {
    font-family: 'NEOMETRIC';
    src: url('../fonts/NEOMETRIC-REGULAR.woff2') format('woff2'),
         url('../fonts/NEOMETRIC-REGULAR.woff') format('woff'),
         url('../fonts/NEOMETRIC-REGULAR.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CERCO';
    src: url('../fonts/CERCO-DEMO.woff2') format('woff2'),
         url('../fonts/CERCO-DEMO.woff') format('woff'),
         url('../fonts/CERCO-DEMO.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    --primary-color: #59108a;
    --primary-color2: #ffc600;
    --secondary-color: #eadaea;
    --secondary-color2: #d39dd8;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --success-color: #5cb85c;
    --danger-color: #d9534f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'CERCO', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color2);
    color: var(--primary-color);
    font-weight: bold;
    transform: translateY(-2px);
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    padding-left: 70px;
    font-family: 'NEOMETRIC', sans-serif;
}

.logo i {
    margin-right: 10px;
}

.logo {
    position: relative;
}

.logo img {
    position: absolute;
    top: 50%;
    left: -7%;
    transform: translateY(-50%);
    height: 80px;
    width: auto;
    z-index: 10;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/CocoyPira.jpeg') no-repeat center 40% / cover;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color2);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color2);
    text-decoration: none;
}

.btn-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Trainer Section */
.about-trainer {
    padding: 80px 0;
    background: white;
}

.trainer-profile {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.trainer-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.trainer-bio {
    flex: 2;
    min-width: 300px;
}

.trainer-bio h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.trainer-bio h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color2);
}

.trainer-bio .intro {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #444;
}

.qualifications h3, 
.philosophy h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.qualifications ul {
    list-style-type: none;
    padding-left: 20px;
}

.qualifications li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.qualifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color2);
    font-weight: bold;
}

.philosophy p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* Behavior Identification Section */
.behavior-identification {
    background-color: #f9f5ff;
    padding: 50px 0;
    margin: 50px 0;
    border-radius: 10px;
}

.behavior-identification h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.behavior-identification h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color2);
}

.behavior-intro {
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--primary-color);
    padding: 20px;
    font-weight: 600;
    background-color: rgba(255, 198, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color2);
}

@media (max-width: 768px) {
    .behavior-intro {
        font-size: 1.1rem;
        padding: 15px 10px;
        margin: 30px 10px 0;
    }
}

.behavior-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.behavior-item {
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    width: calc(50% - 40px);
    min-width: 300px;
}

.behavior-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.behavior-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.behavior-item p {
    margin: 0;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .behavior-item {
        width: 100%;
    }
}

.why-choose-us {
    text-align: center;
    margin-top: 60px;
}

.why-choose-us h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.why-choose-us h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color2);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Featured Pets */
.featured-pets {
    padding: 80px 0;
    background: #f9f9f9;
}

.featured-pets h2, 
.services h2,
.about h2,
.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pet-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pet-card:hover {
    transform: translateY(-10px);
}

.pet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pet-card h3 {
    padding: 15px 20px 5px;
    color: var(--primary-color);
}

.pet-card p {
    padding: 0 20px 15px;
    color: #666;
}

.pet-card .btn {
    display: block;
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Methodology Section */
.methodology {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.methodology h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 20px;
}

.methodology h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color2);
}

.methodology-steps {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.methodology-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
}

.methodology-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.step-content {
    background: #f9f9f9;
    padding: 25px 30px;
    border-radius: 10px;
    flex-grow: 1;
    border-left: 4px solid var(--primary-color2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.methodology-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.step-content p {
    color: #555;
    margin: 0;
    line-height: 1.7;
}

.methodology-cta {
    text-align: center;
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(137, 43, 226, 0.05) 0%, rgba(255, 198, 0, 0.05) 100%);
    border-radius: 15px;
    border: 1px dashed var(--primary-color);
}

.methodology-cta p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

/* Connector lines between steps */
.methodology-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color2);
    opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .methodology-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-left: 20px;
    }
    
    .methodology-steps::before {
        left: 25px;
    }
    
    .step-content {
        width: 100%;
        margin-left: 0;
    }
    
    .methodology-cta {
        padding: 30px 20px;
    }
    
    .methodology-cta p {
        font-size: 1.1rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 20px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color2);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color2);
}

.service-card.featured {
    border: 2px solid var(--primary-color2);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color2);
    color: var(--primary-color);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 150px;
    text-align: center;
    right: -50px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(137, 43, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color2);
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color2);
    transition: all 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    min-height: 90px;
}

.service-features {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    list-style: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color2);
    font-weight: bold;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-service:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-cta {
    text-align: center;
    background: white;
    padding: 50px 20px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px dashed var(--primary-color);
}

.service-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-cta p {
    color: #666;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* About */
.about {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--primary-color2);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.contact-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 320px;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-icon i {
    font-size: 1.8rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

.instagram i {
    color: #E1306C;
}

.tiktok i {
    color: #000000;
}

.facebook i {
    color: #1877F2;
}

.contact-option p {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .contact-option {
        padding: 25px 20px;
    }
    
    .social-icon {
        font-size: 1rem;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }
}
.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* Responsive Design - Comprehensive Breakpoints */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.6rem;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .trainer-bio h2 {
        font-size: 2.2rem;
    }
    
    .methodology h2 {
        font-size: 2.5rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    header {
        height: auto;
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: column;
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
        padding-left: 60px;
        margin-bottom: 10px;
    }
    
    .logo img {
        height: 60px;
        left: -5%;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    body {
        padding-top: 120px;
    }
    
    .hero {
        height: 60vh;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .trainer-profile {
        flex-direction: column;
        gap: 30px;
    }
    
    .trainer-image,
    .trainer-bio {
        min-width: 100%;
    }
    
    .trainer-bio h2 {
        font-size: 2rem;
    }
    
    .trainer-bio .intro {
        font-size: 1.1rem;
    }
    
    .behavior-identification h3 {
        font-size: 1.8rem;
    }
    
    .behavior-item {
        width: calc(50% - 20px);
        min-width: 250px;
        padding: 15px 20px;
    }
    
    .behavior-item p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature {
        padding: 25px 15px;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .methodology {
        padding: 60px 0;
    }
    
    .methodology h2 {
        font-size: 2.2rem;
    }
    
    .methodology-step {
        flex-direction: row;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-options {
        gap: 20px;
    }
    
    .contact-option {
        max-width: 280px;
        padding: 25px 20px;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    header {
        height: auto;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        padding-left: 50px;
    }
    
    .logo img {
        height: 50px;
        left: -3%;
    }
    
    nav ul {
        gap: 5px;
    }
    
    nav ul li a {
        font-size: 0.85rem;
        padding: 3px 8px;
    }
    
    body {
        padding-top: 140px;
    }
    
    .hero {
        height: 50vh;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .btn-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .about-trainer {
        padding: 50px 0;
    }
    
    .trainer-bio h2 {
        font-size: 1.8rem;
    }
    
    .trainer-bio .intro {
        font-size: 1rem;
    }
    
    .behavior-identification {
        padding: 30px 0;
        margin: 30px 0;
    }
    
    .behavior-identification h3 {
        font-size: 1.5rem;
    }
    
    .behavior-item {
        width: 100%;
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .behavior-item i {
        margin-right: 0;
        font-size: 1.8rem;
    }
    
    .behavior-item p {
        font-size: 0.95rem;
    }
    
    .behavior-intro {
        font-size: 1rem;
        padding: 15px;
        margin: 20px 10px 0;
    }
    
    .why-choose-us {
        margin-top: 40px;
    }
    
    .why-choose-us h3 {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    .feature i {
        font-size: 1.8rem;
    }
    
    .feature h4 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .methodology {
        padding: 40px 0;
    }
    
    .methodology h2 {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .methodology-step {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 0 15px 15px;
    }
    
    .step-content {
        padding: 15px 20px;
        width: 100%;
        margin-left: 0;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .methodology-steps::before {
        left: 17px;
    }
    
    .methodology-cta {
        padding: 25px 15px;
        margin-top: 40px;
    }
    
    .methodology-cta p {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-options {
        gap: 15px;
        margin: 30px 0;
    }
    
    .contact-option {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .social-icon {
        font-size: 0.95rem;
    }
    
    .social-icon i {
        font-size: 1.4rem;
    }
    
    .contact-note {
        font-size: 0.85rem;
        margin-top: 20px;
    }
    
    footer {
        padding: 15px 0;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (480px and down) */
@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        padding-left: 45px;
    }
    
    .logo img {
        height: 40px;
    }
    
    nav ul {
        gap: 3px;
    }
    
    nav ul li a {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    body {
        padding-top: 150px;
    }
    
    .hero {
        height: 40vh;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .btn-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .trainer-bio h2 {
        font-size: 1.5rem;
    }
    
    .trainer-bio .intro {
        font-size: 0.95rem;
    }
    
    .behavior-identification h3 {
        font-size: 1.3rem;
    }
    
    .behavior-item {
        padding: 12px;
    }
    
    .behavior-item i {
        font-size: 1.5rem;
    }
    
    .behavior-item p {
        font-size: 0.9rem;
    }
    
    .why-choose-us h3 {
        font-size: 1.4rem;
    }
    
    .feature {
        padding: 15px;
    }
    
    .feature i {
        font-size: 1.5rem;
    }
    
    .feature h4 {
        font-size: 1rem;
    }
    
    .methodology h2 {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-left: 10px;
    }
    
    .step-content {
        padding: 12px 15px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .methodology-steps::before {
        left: 12px;
    }
    
    .contact h2 {
        font-size: 1.5rem;
    }
    
    .contact-intro {
        font-size: 0.95rem;
    }
    
    .contact-option {
        padding: 15px;
    }
    
    .social-icon {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .social-icon i {
        font-size: 1.2rem;
        margin-right: 0;
    }
    
    .contact-option p {
        font-size: 0.85rem;
    }
    
    .contact-note {
        font-size: 0.8rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        height: 70vh;
    }
    
    .trainer-profile {
        flex-direction: row;
        gap: 20px;
    }
    
    .trainer-image,
    .trainer-bio {
        flex: 1;
    }
    
    .behavior-item {
        width: calc(50% - 10px);
        flex-direction: row;
        text-align: left;
    }
    
    .behavior-item i {
        margin-right: 10px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .trainer-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    header,
    nav,
    .contact,
    footer {
        display: none;
    }
    
    body {
        padding-top: 0;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
        background: none;
        color: black;
    }
    
    .hero h1,
    .hero p {
        text-shadow: none;
        color: black;
    }
    
    .btn-cta {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        margin-bottom: 20pt;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pet-card,
.service,
.contact-info,
.contact-form {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

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

/* Adoption Section */
.adoption {
    padding: 80px 0;
    background: #f9f9f9;
}

.adoption-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.adoption-requirements {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.adoption-requirements h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.adoption-requirements ul {
    list-style: none;
    padding: 0;
}

.adoption-requirements li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.adoption-requirements li:last-child {
    border-bottom: none;
}

/* Shop Section */
.shop {
    padding: 80px 0;
}

.shop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.category h3 i {
    margin-right: 10px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.product {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product p {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.product .btn {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* Services Pricing */
.service .pricing {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service .pricing p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.service .pricing strong {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
}

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

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-item .overlay h3 {
    margin-bottom: 5px;
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    margin-bottom: 15px;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member .social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-member .social-links a:hover {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.customer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.customer h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.customer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .adoption-steps {
        grid-template-columns: 1fr;
    }
    
    .shop-categories {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pet-grid {
        grid-template-columns: 1fr;
    }
}
