/* ===== CSS Variables ===== */
:root {
    --primary-color: #C0AB94;
    --primary-dark: #A89278;
    --primary-light: #D4C4B0;
    --secondary-color: #41484E;
    --accent-color: #C0AB94;
    --text-color: #41484E;
    --text-light: #6B7280;
    --white: #ffffff;
    --light-bg: #F9F7F5;
    --border-color: #E5E0DA;
    --success-color: #10b981;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.25s ease;
    --radius: 6px;
    --radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background: #2D3238;
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
}

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

.btn-accent {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accent:hover {
    background: var(--primary-dark);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}

.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.lang-switch a {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 3px;
    transition: var(--transition);
}

.lang-switch a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.lang-switch a:hover {
    color: var(--white);
}

.lang-switch span {
    color: rgba(255,255,255,0.3);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.navbar {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-accent {
    color: var(--primary-color);
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    margin-bottom: 15px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a.nav-appointment-btn {
    background: var(--secondary-color);
    color: #fff;
    -webkit-text-fill-color: #fff;
    padding: 10px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu a.nav-appointment-btn:hover {
    background: #2D3238;
    color: #fff;
    -webkit-text-fill-color: #fff;
    box-shadow: var(--shadow-lg);
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding: 160px 0 80px;
    background: var(--light-bg);
    position: relative;
}

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

.hero-text h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.25;
    margin-bottom: 16px;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: var(--success-color);
    font-size: 20px;
}

.hero-feature span {
    font-weight: 500;
    color: var(--text-color);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-image-placeholder span {
    font-size: 18px;
    opacity: 0.8;
}

.hero-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.hero-badge-text strong {
    display: block;
    font-size: 24px;
    color: var(--secondary-color);
}

.hero-badge-text span {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== Section Styles ===== */
.section {
    padding: 64px 0;
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 15px;
}

.section-light {
    background: var(--light-bg);
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(192, 171, 148, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-dark);
    font-size: 26px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 380px;
    background: var(--secondary-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-image-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.experience-badge strong {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    text-align: center;
}

.about-text h2 {
    font-size: 30px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.about-text > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(192, 171, 148, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.about-feature span {
    font-weight: 500;
    color: var(--text-color);
}

/* ===== Stats Section ===== */
.stats {
    background: var(--secondary-color);
    padding: 50px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon-large {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.stat-number {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Testimonials Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: rgba(192, 171, 148, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    color: var(--secondary-color);
    font-size: 17px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--light-bg);
    padding: 64px 0;
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 24px;
}

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

/* ===== Page Header ===== */
.page-header {
    padding: 140px 0 60px;
    background: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 34px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== Services Page ===== */
.services-detail-grid {
    display: grid;
    gap: 40px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    align-items: center;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-image {
    width: 100%;
    height: 220px;
    background: rgba(192, 171, 148, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 52px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 20px;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-detail-content li i {
    color: var(--success-color);
}

/* ===== About Page ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    width: 100%;
    height: 260px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 52px;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-info .title {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== Contact Page ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info-card > p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
}

.contact-info-item div strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.contact-info-item div span {
    opacity: 0.8;
    font-size: 14px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary-color);
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.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(192, 171, 148, 0.15);
}

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

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

.form-message {
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    display: block;
}

/* ===== Map Section ===== */
.map-section {
    height: 400px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 48px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col .logo-text {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-col > p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    opacity: 0.8;
    font-size: 14px;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    opacity: 0.8;
    font-size: 14px;
}

.contact-list i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image {
        order: -1;
    }

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

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

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

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

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        font-size: 12px;
    }

    .top-bar-right {
        justify-content: center;
        gap: 14px;
    }

    .lang-switch {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 70px 24px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1001;
    }

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

    .hero {
        padding: 130px 0 48px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image-placeholder {
        height: 260px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-feature span {
        font-size: 14px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

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

    .service-card {
        padding: 22px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stats {
        padding: 40px 0;
    }

    .stat-icon-large {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-top {
        padding: 36px 0 24px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-img {
        margin: 0 auto 12px;
    }

    .contact-list {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 10px;
        bottom: -15px;
        width: 90px;
        height: 90px;
    }

    .experience-badge strong {
        font-size: 24px;
    }

    .experience-badge span {
        font-size: 10px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header p {
        font-size: 14px;
    }

    .contact-info-card {
        padding: 28px;
    }

    .contact-form-card {
        padding: 24px;
    }

    .cta {
        padding: 48px 0;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

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

    .hero {
        padding: 120px 0 40px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .blog-card-image {
        height: 180px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .nav-menu {
        width: 100%;
    }
}

/* ===== Blog Page ===== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.blog-search {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(192, 171, 148, 0.15);
}

.search-results-info {
    background: var(--light-bg);
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-color);
}

.search-results-info a {
    color: var(--primary-color);
    font-weight: 500;
    margin-left: 8px;
}

.search-results-info a:hover {
    text-decoration: underline;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.home-blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.blog-card-image {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(192, 171, 148, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 44px;
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: inherit;
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.blog-empty i {
    font-size: 50px;
    color: var(--text-light);
    opacity: 0.4;
    margin-bottom: 15px;
}

.blog-empty h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.blog-empty p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.page-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===== Blog Sidebar ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.category-widget-list li {
    margin-bottom: 0;
}

.category-widget-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
}

.category-widget-list li a:hover,
.category-widget-list li.active a {
    background: rgba(192, 171, 148, 0.1);
    color: var(--primary-color);
}

.category-widget-list .count {
    background: var(--light-bg);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.category-widget-list li.active .count {
    background: var(--primary-color);
    color: var(--white);
}

/* Recent Posts Widget */
.recent-posts-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 10px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.recent-post-item:hover {
    background: var(--light-bg);
}

.recent-post-item.current {
    background: rgba(192, 171, 148, 0.08);
}

.recent-post-thumb {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(192, 171, 148, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Sidebar CTA */
.sidebar-cta {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border: none;
}

.sidebar-cta i {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.sidebar-cta h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.sidebar-cta p {
    opacity: 0.85;
    font-size: 14px;
    margin-bottom: 18px;
}

.sidebar-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.sidebar-cta .btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* ===== Blog Detail ===== */
.blog-detail-header {
    padding: 140px 0 40px;
    background: var(--light-bg);
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.blog-detail-header h1 {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.35;
    margin-bottom: 16px;
    max-width: 720px;
}

.blog-detail-meta {
    display: flex;
    gap: 25px;
    color: var(--text-light);
    font-size: 14px;
    flex-wrap: wrap;
}

.blog-detail-meta i {
    margin-right: 6px;
    color: var(--primary-color);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.blog-detail-cover {
    margin-bottom: 35px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-detail-cover img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-detail-body {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
}

.blog-detail-body h2 {
    font-size: 26px;
    color: var(--secondary-color);
    margin: 35px 0 15px;
}

.blog-detail-body h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 30px 0 12px;
}

.blog-detail-body p {
    margin-bottom: 18px;
}

.blog-detail-body img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
    box-shadow: var(--shadow);
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-detail-body li {
    margin-bottom: 8px;
    list-style: disc;
}

.blog-detail-body ol li {
    list-style: decimal;
}

.blog-detail-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 25px;
    margin: 25px 0;
    background: var(--light-bg);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

.blog-detail-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Share Buttons */
.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.blog-share span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0a66c2; }

/* Related Posts */
.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.related-posts-section h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

/* ===== Blog Responsive ===== */
@media (max-width: 1024px) {
    .blog-layout,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: 2;
    }

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

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

@media (max-width: 768px) {
    .blog-grid,
    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-detail-header h1 {
        font-size: 22px;
    }

    .blog-detail-header {
        padding: 120px 0 32px;
    }

    .blog-detail-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .blog-detail-body h2 {
        font-size: 22px;
    }

    .blog-detail-body h3 {
        font-size: 18px;
    }

    .search-form {
        flex-direction: column;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }

    .blog-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-card-content h3 {
        font-size: 16px;
    }

    .blog-search {
        margin-bottom: 20px;
    }

    .blog-pagination {
        margin-top: 28px;
    }

    .page-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .related-posts-section {
        margin-top: 40px;
        padding-top: 28px;
    }

    .related-posts-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .blog-card-image {
        height: 160px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .sidebar-widget {
        padding: 18px;
    }
}
