/* ============================================
   CHIC PAWS GROOMING - MAIN STYLESHEET
   ============================================ */

/* Color Palette from Logo */
:root {
    --primary-color: #D91E63;      /* Magenta/Pink */
    --secondary-color: #1E3A8A;    /* Dark Blue */
    --accent-color: #F06292;       /* Light Pink */
    --light-bg: #F8F9FA;           /* Light Gray */
    --white: #FFFFFF;
    --dark-text: #2C3E50;
    --light-text: #666666;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Raleway:wght@600;700;800&display=swap');

/* ============================================
   GLOBAL STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-text);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: #152d5f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-whatsapp-header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-header:hover {
    background-color: #152d5f;
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    font-weight: 600;
    color: var(--dark-text);
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(217, 30, 99, 0.05), rgba(30, 58, 138, 0.05));
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    border-radius: 15px;
    color: var(--dark-text);
    height: auto;
}

.hero-content .slide-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.hero-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 25px;
}

.hero-content .btn {
    align-self: flex-start;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    padding: 0 20px;
    padding-top: 20px;
}

.service-card p {
    font-size: 0.95rem;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.services-cta {
    text-align: center;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */

.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    color: var(--secondary-color);
}

/* ============================================
   STORE PREVIEW
   ============================================ */

.store-preview {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.store-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.store-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.store-info h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.store-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.store-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   PAGE TITLE
   ============================================ */

.page-title {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-title p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ============================================
   ABOUT STORY
   ============================================ */

.about-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.story-text h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--light-text);
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.certifications h2 {
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.cert-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.cert-info {
    padding: 25px;
}

.cert-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cert-info p {
    font-size: 0.95rem;
}

/* ============================================
   EXPERIENCE & VALUES
   ============================================ */

.experience {
    padding: 80px 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-text h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background-color: rgba(217, 30, 99, 0.1);
    transform: translateX(5px);
}

.values-list .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.values-list h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.values-list p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.service-detail-images {
    width: 100%;
}

.butik-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.butik-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-detail-content > p:first-of-type {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 10px 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

.service-features li:before {
    content: '✓ ';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* ============================================
   PRICING INFO
   ============================================ */

.pricing-info {
    padding: 60px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.pricing-info h2 {
    color: var(--secondary-color);
}

.pricing-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 30, 99, 0.1);
}

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

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background-color: rgba(217, 30, 99, 0.1);
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.info-content p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.info-note {
    color: var(--light-text);
    font-size: 0.85rem;
    font-style: italic;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.map-note {
    text-align: center;
    color: var(--light-text);
    font-size: 0.95rem;
}

/* ============================================
   QUICK CONTACT
   ============================================ */

.quick-contact {
    padding: 60px 0;
    text-align: center;
}

.quick-contact h2 {
    color: var(--secondary-color);
}

.quick-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--accent-color);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

    @media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .btn-whatsapp-header {
        width: 100%;
        justify-content: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .about-content,
    .store-content,
    .story-content,
    .experience-content,
    .service-detail-card,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        direction: ltr;
    }

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

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .butik-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        padding: 40px 0;
    }

    .page-title h1 {
        font-size: 1.8rem;
    }

    .services-preview,
    .about-preview,
    .store-preview,
    .about-story,
    .certifications,
    .experience,
    .services-detail,
    .contact-section,
    .map-section {
        padding: 40px 0;
    }

    .service-detail-card {
        margin-bottom: 40px;
    }

    .service-detail-image {
        height: 300px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav ul {
        gap: 10px;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .contact-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .values-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .butik-images {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px !important;
    }
}
