/* ===================================
   CENTRE EL KHALDAOUI - PROFESSIONAL MEDICAL CSS
   Medical Physiotherapy Center
   =================================== */

/* ===== CSS Variables - Medical Professional ===== */
:root {
    /* Real Business Colors - Matching the Clinic */
    --primary-color: #4CAF93; /* Teal Green - Main clinic color */
    --secondary-color: #2D8B6E; /* Darker Green */
    --accent-color: #6BC5A8; /* Light Teal */
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --text-white: #FFFFFF;
    --bg-light: #F0F7F5;
    --bg-white: #FFFFFF;
    --bg-green-light: #E8F5F1;
    --border-color: #E0E0E0;
    --success-green: #4CAF93;
    --shadow-light: rgba(76, 175, 147, 0.1);
    --shadow-medium: rgba(76, 175, 147, 0.15);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* ===== Global Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
    font-family: var(--font-body), 'Arial', sans-serif;
    direction: rtl;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== Buttons - Medical Style ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(76, 175, 147, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(76, 175, 147, 0.4);
}

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

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

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

.btn-cta {
    background: var(--secondary-color);
    color: var(--text-white);
    font-size: 1.15rem;
    padding: 16px 36px;
}

.btn-cta:hover {
    background: #008C5A;
}

.btn-whatsapp {
    background: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* ===== Language Toggle ===== */
.language-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

html[dir="rtl"] .language-toggle {
    left: 20px;
    right: auto;
}

.lang-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}



.lang-btn.active {
    color: var(--primary-color);
    background: var(--bg-green-light);
}

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

.lang-separator {
    color: var(--border-color);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 25px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== Navigation - Professional ===== */
.navbar {
    background: var(--bg-white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 12px var(--shadow-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 2px 16px var(--shadow-medium);
}

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

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

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

.tagline {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

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

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

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ===== Hero Section - Medical Professional ===== */
.hero {
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 15vh 0 8vh;
    text-align: center;
    color: var(--text-white);
    position: relative;
    min-height: 70vh;
    max-height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 1400px) {
    .hero {
        min-height: 600px;
        background-position: center 30%;
    }
}

@media (max-width: 1200px) {
    .hero {
        min-height: 60vh;
        background-position: center center;
    }
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 50px;
    width: 100%;
}

.hero-title,
.hero-subtitle {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Section Styles ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    gap: 50px;
}

.owner-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    background: var(--bg-green-light);
    padding: 40px;
    border-radius: 16px;
}

.owner-photo {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-medium);
}

.owner-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.owner-info h4 {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-weight: 500;
}

.owner-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

@media (max-width: 992px) {
    .owner-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .owner-photo {
        max-width: 350px;
        margin: 0 auto;
    }
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 35px 28px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 8px 24px var(--shadow-light);
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services {
    background: var(--bg-light);
}

.service-category {
    margin-bottom: 50px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.category-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    padding: 32px 28px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 2px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px var(--shadow-medium);
    transform: translateY(-4px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--text-medium);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--accent-color);
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid var(--border-color);
    background: var(--bg-white);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76, 175, 147, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

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

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--text-white);
}

/* ===== Reviews Section ===== */
.reviews {
    background: var(--bg-light);
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.15rem;
}

.rating-badge i {
    color: #FFB800;
    font-size: 1.4rem;
}

.rating-number {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.6rem;
}

.rating-text {
    color: var(--text-medium);
}

.reviews-embed {
    max-width: 1000px;
    margin: 40px auto 0;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow-light);
}

/* ===== Map Section ===== */
.map-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--shadow-medium);
    margin-top: 40px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.btn-directions {
    box-shadow: 0 4px 20px rgba(76, 175, 147, 0.5);
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-directions:hover {
    box-shadow: 0 6px 30px rgba(76, 175, 147, 0.7);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
    
    .map-overlay {
        bottom: 20px;
    }
    
    .btn-directions {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 900px;
    width: 100%;
}

.info-card {
    background: var(--bg-light);
    padding: 26px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.4rem;
    color: var(--text-white);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.direction-link:hover {
    gap: 12px;
    color: var(--accent-color);
}

.hours-list p {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.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(76, 175, 147, 0.15);
}

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

/* ===== CTA Buttons ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 55vh;
        padding: 12vh 0 6vh;
        background-position: center center;
    }
    
    .hero-content {
        padding: 0 20px 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .owner-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .owner-photo {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    
    .logo-img {
        height: 75px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 5px 20px var(--shadow-medium);
        transition: var(--transition-smooth);
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    html[dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    html[dir="rtl"] .nav-menu.active {
        left: auto;
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        background-image: url('../images/hero-mobile.jpg');
        background-position: center center;
        background-size: cover;
        padding: 10vh 0 6vh;
        min-height: 80vh;
        max-height: none;
    }
    
    .hero-content {
        padding: 0 15px 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .owner-intro {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .owner-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-height: 400px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 26px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .language-toggle {
        bottom: 80px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    html[dir="rtl"] .language-toggle {
        left: 10px;
        right: auto;
    }
    
    .hero {
        min-height: 75vh;
        padding: 8vh 0 5vh;
    }
    
    .hero-content {
        padding: 0 10px 30px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .owner-intro {
        padding: 25px 15px;
    }
    
    .service-card,
    .feature-card,
    .info-card {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}