:root {
    --primary-color: #2E8B57;
    /* SeaGreen - Verdia Green */
    --primary-dark: #1e5e3a;
    --secondary-color: #1A252F;
    /* Dark Navy - Corporate */
    --accent-color: #F39C12;
    /* Golde - Highlights */
    --text-color: #555;
    --text-light: #777;
    --bg-light: #f9fbfd;
    --white: #fff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.bg-light {
    background: var(--bg-light);
}

.text-white {
    color: var(--white) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 139, 87, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.8rem;
}

.full-width {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: #ccc;
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-details span {
    margin-right: 20px;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    color: #ccc;
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--white);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    /* Adjusted height for better proportions */
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center align all items */
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    height: 80%;
    position: relative;
    z-index: 1001;
}

.logo img {
    height: 150px;
    /* Proportional logo size */
    width: auto;
    object-fit: contain;
    margin-top: 30px;
    /* Lower the logo slightly */
    /* Removed absolute positioning for better layout */
}

/* Remove the placeholder - no longer needed */
.logo::after {
    content: '';
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Slightly reduced gap for better fit */
    height: 100%;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    padding: 10px 0;
    /* Match dropdown and button alignment */
    display: flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 0;
    /* Consistent height with neighbors */
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(15px);
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px !important;
    color: var(--secondary-color) !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-align: left !important;
    background: none !important;
}

.dropdown-menu a:hover {
    background: #f8f9fa !important;
    color: var(--primary-color) !important;
    padding-left: 30px !important;
}


.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    /* Adjusted padding */
    border-radius: 5px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.btn-lang {
    background: var(--bg-light);
    border: 1px solid #eee;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-lang:hover {
    background: #e9ecef;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    align-self: center;
}

/* Hero Section */
.hero {
    height: 85vh;
    /* High quality cleaning action shot */
    background: url('woman-is-holding-cleaning-product-gloves-rags-basin-white-wall.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-attachment: fixed;
    /* Parallax feel */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 37, 47, 0.8), rgba(46, 139, 87, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--accent-color);
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 700;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    animation: fadeInUp 1s ease 0.6s both;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Components */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 90%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.badg-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badg-txt {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.features-list {
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-row i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.feature-row h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-row p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Services Slider */
.services-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.services-track {
    display: flex;
    width: max-content;
    gap: 30px;
}

.service-card {
    width: 350px;
    /* Fixed width for slider items */
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    flex-shrink: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom: 4px solid var(--primary-color);
}

.img-box {
    height: 200px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .img-box img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    position: relative;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: absolute;
    top: -30px;
    right: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Parallax Why Us */
.parallax-bg {
    background: url('https://images.unsplash.com/photo-1584622050111-993a426fbf0a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80') fixed center center/cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 37, 47, 0.9);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.subtitle-text {
    color: #aeaeae;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-item:hover i {
    color: var(--white);
}

.feature-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.quote-icon {
    font-size: 2rem;
    color: #eee;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary-color), #2c3e50);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 45px;
    max-width: 300px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

.info-item:hover .icon-box {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.info-item h5 {
    color: var(--white);
    margin-bottom: 2px;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item span {
    color: #aaa;
    font-size: 1rem;
    transition: var(--transition);
}

.info-item:hover span {
    color: white;
}

.social-icons-big {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons-big a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons-big a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fdfdfd;
    transition: border 0.3s;
    outline: none;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: none;
}

/* Checkbox specific styles */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-color);
    background: #fdfdfd;
    padding: 10px 12px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.25s;
    font-weight: 500;
}

.checkbox-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.checkbox-item:hover {
    border-color: var(--primary-color);
    background: rgba(46,139,87,0.04);
}

.checkbox-item:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(46,139,87,0.08);
    color: var(--primary-dark);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Profile Toggle (Particulier / Pro) */
.profile-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    background: #fafafa;
    transition: all 0.25s ease;
    font-family: 'Montserrat', sans-serif;
}

.profile-btn i {
    font-size: 1.15rem;
    color: #bbb;
    transition: all 0.25s;
}

.profile-btn input[type="radio"] {
    display: none;
}

.profile-btn:hover {
    border-color: var(--primary-color);
    background: rgba(46,139,87,0.05);
}

.profile-btn:hover i {
    color: var(--primary-color);
}

.profile-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(46,139,87,0.08), rgba(46,139,87,0.03));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(46,139,87,0.15);
}

.profile-btn.active i {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid #eee;
    /* Light but definite border */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    background: #fff;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    text-align: left;
    margin-bottom: 35px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--primary-color);
}

.pricing-features li i.no {
    color: #ccc;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0f1a13 0%, #111 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-brand .logo {
    height: auto;
    position: static;
    z-index: auto;
    display: inline-flex;
    margin-bottom: 5px;
}

.footer-brand .logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-top: 0;
    /* Remove white bg bleed on dark footer */
    mix-blend-mode: screen;
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-contact-info {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-contact-info a i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.footer-col ul li a::before {
    content: '›';
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.newsletter-box {
    display: flex;
    margin-top: 15px;
}

.newsletter-box input {
    padding: 10px 14px;
    width: 100%;
    border: none;
    background: rgba(255,255,255,0.07);
    color: white;
    outline: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.88rem;
}

.newsletter-box input::placeholder { color: #666; }

.newsletter-box button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0 16px;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: var(--transition);
}

.newsletter-box button:hover { background: var(--primary-dark); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: #555;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #555;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--primary-color); }

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 110px;
    /* Above WhatsApp button */
    right: 39px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1999;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 80px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar .container {
        padding: 0 30px;
    }

    .logo img {
        left: -50px;
        /* Adjust logo position for tablets */
        height: 120px;
    }

    .logo::after {
        width: 120px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 968px) {
    .section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    /* Adjust logo for smaller screens to not overlap */
    .logo img {
        height: 100px;
        left: -30px;
        top: 0;
    }

    .logo::after {
        width: 90px;
    }

    .navbar {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        height: 70px;
    }

    .logo img {
        height: 80px;
        /* Smaller logo for mobile */
        left: 0;
        top: 5px;

    }

    .logo {
        align-items: center;
        width: auto;
    }

    .logo::after {
        display: none;
        /* Remove placeholder */
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Center items */
        transition: 0.4s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 25px;
        /* More space between links */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        /* Larger text for touch */
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        /* Add top padding for fixed nav */
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        text-align: center;
    }

    /* Mobile Dropdown styles */
    .dropdown {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        background: #fdfdfd;
        width: 100%;
        padding: 0;
        border-top: none;
        min-width: unset;
        transition: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu a {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* ---- Popup compact ---- */
    .popup-content {
        width: 92%;
        max-width: 360px;
        border-radius: 12px;
    }

    .popup-header {
        padding: 20px 16px 16px;
    }

    .popup-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .popup-header h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .popup-header p {
        font-size: 0.85rem;
    }

    .popup-body {
        padding: 16px;
    }

    .popup-offer {
        padding: 14px;
        margin-bottom: 16px;
    }

    .offer-number {
        font-size: 2rem;
    }

    .offer-text {
        font-size: 1rem;
    }

    .popup-benefits li {
        font-size: 0.85rem;
        padding: 8px 0;
        gap: 8px;
    }

    .popup-benefits {
        margin-bottom: 16px;
    }

    .popup-btn {
        padding: 12px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .popup-note {
        font-size: 0.75rem;
    }
}

/* Welcome Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--white);
    max-width: 420px;
    width: 90%;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
    animation: popupBounce 0.5s ease;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.popup-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 30px 25px 25px;
    text-align: center;
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.popup-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.popup-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.popup-body {
    padding: 25px 25px;
}

.popup-offer {
    background: linear-gradient(135deg, #fff5e6, #ffe6cc);
    border-left: 5px solid var(--accent-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.offer-text {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.offer-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.popup-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.popup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

.popup-benefits li:last-child {
    border-bottom: none;
}

.popup-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.popup-btn {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.popup-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Service Popup Additions */
.service-popup-content {
    max-width: 650px;
}

.popup-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.popup-benefits-grid li {
    border-bottom: none;
    padding: 8px 0;
}

.popup-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.popup-buttons-grid .btn {
    width: 100%;
    margin-bottom: 0;
    padding: 14px 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp {
    background: #25D366;
    color: white !important;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: var(--secondary-color);
    color: white !important;
}

.btn-call:hover {
    background: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 37, 47, 0.3);
}

@media (max-width: 600px) {
    .popup-buttons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .popup-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Packs / Abonnements Section --- */
.packs {
    padding: 80px 0;
    background: var(--bg-light);
}

.packs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pack-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pack-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.pack-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pack-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
}

.pack-header i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(46, 139, 87, 0.1);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
}

.pack-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.pack-body p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.pack-body ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0;
}

.pack-body ul li {
    margin-bottom: 15px;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.pack-body ul li i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 1rem;
}

.pack-body .btn-primary {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

@media (max-width: 992px) {
    .pack-card.featured {
        transform: none;
    }

    .pack-card.featured:hover {
        transform: translateY(-10px);
    }

    .packs-container {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* === PREMIUM FEATURES === */

/* 1. Client Logos Bar */
.logos-bar {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.logos-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollLogos 40s linear infinite;
    align-items: center;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide i {
    font-size: 3rem;
    color: #ccc;
    transition: var(--transition);
}

.logo-slide img {
    max-width: 150px;
    filter: grayscale(1) opacity(0.5);
    transition: var(--transition);
}

.logo-slide:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* 2. Before/After Slider */
.results-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-container {
    width: 100%;
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    z-index: 1;
}

.image-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Initial split */
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: "\f337";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    border: 4px solid #fff;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0;
    cursor: col-resize;
}

.label-before, .label-after {
    position: absolute;
    top: 20px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-before { left: 20px; }
.label-after { right: 20px; }

/* 3. FAQ Accordion */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 850px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-question i {
    width: 30px;
    height: 30px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.8rem;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: #fff;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 500px;
}

/* 4. Floating Quick Quote */
.floating-quote-btn {
    position: fixed;
    bottom: 35px;
    left: 30px;
    background: var(--primary-color);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
    border: 2px solid #fff;
    animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-quote-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.6);
}

.floating-quote-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .floating-quote-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        left: 20px;
        bottom: 25px;
    }
}

/* 5. Our Process Section */
.process-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Connecting line for desktop */
@media (min-width: 992px) {
    .process-grid::after {
        content: '';
        position: absolute;
        top: 45px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        z-index: 1;
        opacity: 0.3;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
    position: relative;
    border: 2px solid #eee;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(46, 139, 87, 0.3);
}

.step-number i {
    font-size: 1.8rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* UI Refinements */
.feature-item i, .why-icon i {
    transition: var(--transition);
}

.feature-item:hover i, .why-icon:hover i {
    transform: scale(1.1) rotate(5deg);
}

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(46, 139, 87, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

/* 6. Blog / Expert Advice Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.open-article-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--primary-color);
    font-family: inherit;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.9rem;
    transition: var(--transition);
}

.open-article-btn:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Blog Popup Specifics */
.blog-popup-content {
    max-width: 800px;
}

.blog-popup-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.blog-popup-text h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.blog-popup-text .category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.blog-popup-text p {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.blog-popup-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style: none;
}

.blog-popup-text li {
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-popup-text li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
}

