/* 🐾 Pun Pun Pet Grooming - Style */

:root {
    --primary: #FF6B9D;
    --primary-dark: #D6336C;
    --primary-light: #FFE0EB;
    --secondary: #FFD93D;
    --accent: #6BCB77;
    --blue: #4D96FF;
    --dark: #2D3436;
    --gray: #636E72;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', 'Segoe UI', 'Kanit', sans-serif;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFF0F5 50%, #F0F7FF 100%);
    color: var(--dark);
    min-height: 100vh;
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.navbar .logo span {
    color: var(--blue);
}

.navbar nav a {
    text-decoration: none;
    color: var(--gray);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-booking {
    margin-left: 20px;
}

/* ===== Hero Section ===== */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatAround 6s ease-in-out infinite;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), #FFF0F5);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, var(--accent), #4CAF50);
    color: var(--white);
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary), #FFC107);
    color: var(--dark);
}

.btn-danger {
    background: linear-gradient(135deg, #FF6B6B, #EE5A24);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ===== Section ===== */
.section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-title.left {
    text-align: left;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 45px;
    font-size: 1.05rem;
}

/* ===== About Section ===== */
.about-section {
    padding-top: 50px;
}

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

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light), #E8F0FE);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.placeholder-icon {
    font-size: 4rem;
}

.placeholder-text {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
    border: 4px solid var(--white);
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    text-align: center;
    line-height: 1.3;
}

.about-content {
    padding: 10px 0;
}

.about-desc {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== Services Section ===== */
.services-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 224, 235, 0.3) 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card .price {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: linear-gradient(180deg, transparent 0%, rgba(232, 240, 254, 0.3) 50%, transparent 100%);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #E8E8E8;
    border-radius: 50px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s;
    color: var(--gray);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

/* สีพื้นหลังหลากหลายสำหรับ gallery */
.gallery-placeholder.pink { background: linear-gradient(135deg, #FFE0EB, #FFC1D6); }
.gallery-placeholder.blue { background: linear-gradient(135deg, #E0F0FF, #B3D9FF); }
.gallery-placeholder.green { background: linear-gradient(135deg, #E0FFE8, #B3FFCC); }
.gallery-placeholder.yellow { background: linear-gradient(135deg, #FFF8E0, #FFE8B3); }
.gallery-placeholder.purple { background: linear-gradient(135deg, #F0E0FF, #D6B3FF); }
.gallery-placeholder.peach { background: linear-gradient(135deg, #FFE8E0, #FFCCB3); }

.gallery-placeholder .g-icon {
    font-size: 3.5rem;
}

.gallery-placeholder .g-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery-placeholder .g-tag {
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255,255,255,0.7);
    color: var(--primary-dark);
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.gallery-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px 25px;
    background: #FFF9E0;
    border-radius: var(--radius);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-note p {
    color: #856404;
    font-size: 0.9rem;
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== Contact Section ===== */
.contact-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 224, 235, 0.2) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.contact-note {
    font-size: 0.8rem;
    color: #856404;
    margin-top: 5px;
    font-style: italic;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.hours-row span:first-child {
    color: var(--gray);
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--dark);
}

.hours-row.holiday span:last-child {
    color: var(--accent);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn:hover {
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.3rem;
}

.social-btn.line { background: #E8F5E9; color: #06C755; }
.social-btn.facebook { background: #E3F2FD; color: #1877F2; }
.social-btn.instagram { background: #FCE4EC; color: #E4405F; }
.social-btn.tiktok { background: #F3E5F5; color: #000; }

/* ===== Map ===== */
.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-header {
    padding: 20px 25px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-header h3 {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.map-wrapper {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

.map-note {
    padding: 12px 20px;
    font-size: 0.8rem;
    color: #856404;
    background: #FFF9E0;
    text-align: center;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: var(--white);
    margin: 0;
    max-width: none;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.footer-brand .logo span {
    color: var(--blue);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 8px;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== Forms ===== */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* ===== Time Slots ===== */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.slot-btn {
    padding: 10px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    font-family: inherit;
}

.slot-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slot-btn.full {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ===== Status Badges ===== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-pending { background: #FFF3CD; color: #856404; }
.badge-confirmed { background: #D4EDDA; color: #155724; }
.badge-in_progress { background: #CCE5FF; color: #004085; }
.badge-completed { background: #D1ECF1; color: #0C5460; }
.badge-cancelled { background: #F8D7DA; color: #721C24; }
.badge-booked { background: #E2D5F1; color: #5A2D82; }
.badge-checked_in { background: #FFE0B2; color: #E65100; }
.badge-checked_out { background: #C8E6C9; color: #1B5E20; }

/* ===== Table ===== */
.table-container {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
}

th {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

td {
    font-size: 0.9rem;
}

tr:hover td {
    background: #FFF5F8;
}

/* ===== Toast / Alert ===== */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    display: none;
}

.alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 15px;
    }

    .navbar nav {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .navbar nav a {
        margin: 0 8px;
        font-size: 0.85rem;
    }

    .nav-booking {
        margin-left: auto;
    }

    .hero h1 { font-size: 2rem; }
    .hero-icon { font-size: 3rem; }
    .hero p, .hero-tagline { font-size: 1rem; }

    .hero-stats {
        gap: 20px;
        padding: 20px;
    }

    .stat-number { font-size: 1.4rem; }

    .section { padding: 50px 15px; }
    .section-title { font-size: 1.5rem; }

    .form-container {
        padding: 25px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

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

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

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .about-experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }

    .exp-number { font-size: 1.4rem; }
}
