:root {
    --primary-red: #dc2626;
    --dark-grey: #1f2937;
    --light-grey: #f3f4f6;
    --white: #ffffff;
    --black: #000000;
    --accent-grey: #6b7280;
    --hover-red: #b91c1c;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-house {
    width: 50px;
    height: 40px;
    margin-right: 15px;
    position: relative;
}

.logo-house::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid var(--black);
}

.logo-house::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--black);
}

.logo-text-mondi {
    color: var(--primary-red);
    font-weight: 900;
}

.logo-text-group {
    color: var(--black);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-grey);
    margin: 4px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images-mondig/Mondi-logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: slideInLeft 1.2s ease-out;
}

.hero-title span {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 300;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-buttons {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    animation: slideUp 1.2s ease-out 0.6s both;
    z-index: 10;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cta-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: var(--hover-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--hover-red);
    padding: 1.2rem 3rem;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark-grey);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

/* About Section */
.about {
    background: var(--light-grey);
    padding: 4rem 0;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.about-text h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--accent-grey);
}

.about-owner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.owner-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.18), 0 0 0 12px rgba(220,38,38,0.08);
    margin-bottom: 1.5rem;
    border: 8px solid var(--white);
    overflow: hidden;
    position: relative;
}

.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    z-index: 2;
}

.circle-decor {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 306px;
    height: 306px;
    border-radius: 50%;
    border: 4px dashed var(--primary-red);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.owner-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--hover-red));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-weight: 700;
}

.feature-card p {
    color: var(--accent-grey);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-red);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
    font-weight: 700;
}

.service-card p {
    font-size: 1.1rem;
    color: var(--accent-grey);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    background: var(--dark-grey);
    color: var(--white);
}

.gallery .section-title {
    color: var(--white);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.upload-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upload-btn:hover {
    background: var(--hover-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 1.2;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(31, 41, 55, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all 0.4s ease;
}

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

.gallery-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-upload:hover {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.1);
}

.gallery-upload input {
    display: none;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.gallery-upload h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-upload p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact {
    background: var(--light-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--accent-grey);
}

.contact-info strong {
    color: var(--dark-grey);
}

.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-grey);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: var(--light-grey);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--dark-grey);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.1);
}

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

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

footer p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Photo Preview Styles */
.photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 15px;
    transition: all 0.4s ease;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .owner-circle {
        width: 250px;
        height: 250px;
    }
    
    .owner-name {
        font-size: 1.6rem;
    }
    
    .circle-decor {
        width: 268px;
        height: 268px;
        top: -9px;
        left: -9px;
    }
}

@media (max-width: 768px) {
    /* Navigation fixes */
    nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-house {
        width: 35px;
        height: 30px;
        margin-right: 10px;
    }
    
    .logo-house::before {
        border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-bottom: 15px solid var(--black);
    }
    
    .logo-house::after {
        height: 15px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1001;
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: #f8f9fa;
        color: var(--primary-red);
    }

    .hamburger {
        display: flex;
    }

    /* Mobile menu backdrop */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hero section mobile fixes */
    .hero {
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        position: absolute;
        bottom: 120px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 90%;
        max-width: 400px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* About section mobile fixes */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0;
    }
    

    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

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

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

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

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-buttons {
        bottom: 100px;
        width: 95%;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    

    
    .owner-name {
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-buttons {
        bottom: 40px;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
.social-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    justify-content: flex-start;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-grey);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
    border: 1.5px solid var(--light-grey);
    transition: all 0.25s;
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.social-links img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    transition: filter 0.2s;
}

.social-links a:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        gap: 1.2rem;
    }
    .social-links a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    .social-links img {
        width: 28px;
        height: 28px;
    }
}

/* ...existing code... */

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.contact-info-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(31,41,55,0.07);
    padding: 2.5rem 2rem;
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 500px;
}

.contact-heading {
    color: var(--primary-red);
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-info-box p {
    margin-bottom: 0.7rem;
    color: var(--dark-grey);
    font-size: 1.05rem;
}

.contact-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 220px;
    min-width: 220px;
    margin-top: 1.5rem;
}

.social-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-grey);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.08);
    border: 1.5px solid var(--light-grey);
    transition: all 0.25s;
}

.social-links a i {
    font-size: 2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
}

.social-links a:hover i {
    color: var(--white);
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
    }
    .contact-socials {
        justify-content: flex-start;
        margin-top: 0;
    }
    .social-links {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .contact-info-box {
        padding: 1.5rem 1rem;
    }
    .social-links {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .contact-content {
        gap: 1.5rem;
    }
}
.services-highlight {
    background: var(--light-grey);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
.services-highlight-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(31,41,55,0.12);
    padding: 4rem 3rem;
    width: 95%;
}

.services-logo {
    flex: 0 0 600px;
    max-width: 700px;
    margin-right: 0;
}

.services-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(31,41,55,0.08);
    background: #fff;
    padding: 1rem;
}

.services-list {
    flex: 1 1 0;
    min-width: 0; /* Allow flex item to shrink */
    text-align: left;
    padding-left: 1rem;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 1.4rem;
    color: var(--dark-grey);
    font-weight: 600;
    line-height: 2.5;
}

.services-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.services-list li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

@media (max-width: 700px) {
    .services-highlight {
        min-height: 100vh;
        padding: 1rem 0;
    }
    .services-highlight-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
        width: 95%;
    }
    .services-logo {
        flex: 0 0 auto;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    .services-list {
        flex: 1 1 auto;
        width: 100%;
    }
    .services-list ul {
        font-size: 1.1rem;
    }
    .services-list li {
        padding-left: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .services-list li::before {
        font-size: 1rem;
    }
}

.services-list li a {
    display: block;          /* makes the whole li clickable */
    text-decoration: none;   /* remove underline */
    color: inherit;          /* inherit li text color */
    font: inherit;           /* inherit font settings (size, weight, family) */
}

.services-list li a:hover,
.services-list li a:visited,
.services-list li a:active {
    text-decoration: none;
    color: inherit;
}
