:root {
    --primary-green: #291353;
    --accent-green: #5b30a1;
    --mint-bg: #f8faf9;
    --white: #ffffff;
    --dark: #2d3136;
}

html { 
    scroll-behavior: smooth; 
    /* Remove overflow-x here, it's better handled on the body */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'El Messiri', sans-serif; background-color: var(--white); color: var(--dark); line-height: 1.8; text-align: center; overflow-x: hidden;
margin: 0;
}

/* Global Centering for Sections */
section {
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

/* --- Enhanced White Navbar --- */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    height: 120px;
    background-color: transparent; /* Initially transparent on the hero */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 130px;
}

/* State when user scrolls down */
nav.scrolled {
    height: 90px;
    background-color: rgba(255, 255, 255, 0.95);
    /* backdrop-filter: blur(10px); Removed to prevent laggy scrolling */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1; /* This ensures both ULs take up equal space to keep logo centered */
}

.right-links {
    justify-content: flex-end; /* Pushes right text to the right */
}

.left-links {
    justify-content: flex-start; /* Pushes left text to the left */
}


/* Nav Links & Hover Animation */
nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
    text-decoration: none; /* <--- Add this line here */
}

nav.scrolled ul li a {
    color: var(--dark);
}

/* Animated Underline Hover */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: var(--accent-green);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent-green) !important;
}

/* --- Burger Menu (Hidden on Desktop) --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

nav.scrolled .hamburger span {
    background-color: var(--primary-green);
}
.mobile-menu {
    display: none;
}
.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 2100;
}

.logo img {
    height: 45px;
}

.logo-text {
    font-size: 14px;
    margin-top: 5px;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s;
}

/* when navbar scrolls */
nav.scrolled .logo-text {
    color: var(--primary-green);
}



/* --- Mobile View (Responsive) --- */
/* --- UNIVERSAL MOBILE FIXES --- */

@media (max-width: 992px) {
    /* 1. Hamburger stays on right, logo in center */
    .hamburger { 
        display: flex; 
        z-index: 3100; 
        position: relative;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--white);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    nav.scrolled .hamburger span {
        background-color: #000000 !important;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hamburger.active span {
        background-color: black;
    }

    /* 2. Hide desktop left/right links */
    .left-links,
    .right-links {
        display: none;
    }

    /* 3. Mobile menu container (links slide below logo) */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: -100%;           /* hidden above screen */
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding-top: 220px;   /* space below centered logo */
        transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), top 0.5s, opacity 0.3s;
        z-index: 3000;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
    }

    /* 4. Show menu when hamburger clicked */
    nav.active .mobile-menu {
        transform: translateY(0);
        top: 0;
        opacity: 1;
        pointer-events: auto;
    }

    /* 5. Mobile menu links */
    .mobile-menu li a {
        color: var(--primary-green) !important;
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        display: block;
        padding: 10px 0;
    }
 
    /* 6. Keep logo in center above menu */
    .logo {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3100;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 7. Optional: small screens tweaks */
    @media (max-width: 480px) {
        .mobile-menu {
            padding-top: 180px;
            gap: 20px;
        }
        .mobile-menu li a {
            font-size: 20px;
        }
        .hero-text h1 {
            font-size: 1.2rem;
        }
        .hero-text {
            padding: 0 15px;
        }
        .circle-container {
            width: 320px;
            height: 320px;
        }
        .card {
            width: 80px;
            height: 80px;
        }
        .center-circle {
            width: 100px;
            height: 100px;
        }
        .center-circle img {
            width: 60%;
        }
        .item-1 { transform: translate(110px, 0); }
        .item-2 { transform: translate(78px, 78px); }
        .item-3 { transform: translate(0, 110px); }
        .item-4 { transform: translate(-78px, 78px); }
        .item-5 { transform: translate(-110px, 0); }
        .item-6 { transform: translate(-78px, -78px); }
        .item-7 { transform: translate(0, -110px); }
        .item-8 { transform: translate(78px, -78px); }
        .contact-panel {
            width: 95%;
            padding: 30px 20px;
        }
        .info-item {
            width: 100%;
            padding: 15px 20px;
        }
        .circle-img-wrapper {
            width: 120px;
            height: 120px;
        }
        .product-circle h3 {
            font-size: 14px;
        }

        
    }
}




/* 4. Global Image Safety */
img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
/* --- Hero Section & Circle Container --- */
#section2 {
    position: relative;
    min-height: 100vh; /* min-height is safer than height */
    height: auto; 
    padding: 120px 20px 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    overflow: hidden; /* Changed from hidden to visible */
}

#section2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 13, 83, 0.7) 0%, rgba(87, 45, 106, 0.7) 100%);
    z-index: 1;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}


.hero-text {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}



/* The Center Piece */
.center-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    border: 5px solid var(--accent-green);
}

.center-circle img {
    width: 70%;
    object-fit: contain;
}

/* Individual Card (Circle Segments) */
.card {
    position: absolute;
    width: 140px;  /* Increased size */
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    background: #fff;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position Calculation 
   Formula: translate(cos(angle) * radius, sin(angle) * radius)
   Radius: 180px for 500px container
*/
/* Increased spacing by increasing the translation radius to 240px */
/* Balanced spacing with a 210px radius */
.item-1 { transform: translate(210px, 0); }
.item-2 { transform: translate(148px, 148px); }
.item-3 { transform: translate(0, 210px); }
.item-4 { transform: translate(-148px, 148px); }
.item-5 { transform: translate(-210px, 0); }
.item-6 { transform: translate(-148px, -148px); }
.item-7 { transform: translate(0, -210px); }
.item-8 { transform: translate(148px, -148px); } /* This fixes the misplaced image */
/* Hover Effects */
.card:hover {
    z-index: 10;
    border-color: var(--accent-green);
    cursor: pointer;
}

/* --- Layout Improvements (Centered & Spacious) --- */
.intro-panel {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.intro-panel h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .circle-container {
        width: 450px;
        height: 450px;
    }
    .card {
        width: 110px;
        height: 110px;
    }
    .center-circle {
        width: 150px;
        height: 150px;
    }
    /* Adjusted radius for mobile: 170px */
    .item-1 { transform: translate(170px, 0); }
    .item-2 { transform: translate(120px, 120px); }
    .item-3 { transform: translate(0, 170px); }
    .item-4 { transform: translate(-120px, 120px); }
    .item-5 { transform: translate(-170px, 0); }
    .item-6 { transform: translate(-120px, -120px); }
    .item-7 { transform: translate(0, -170px); }
    .item-8 { transform: translate(120px, -120px); }
}
/* Circular Gallery Section */
#section5 { background-color: var(--white); padding: 120px 20px; }
#section5 h2 { margin-bottom: 60px; font-size: 32px; color: var(--primary-green); }


.circle-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.product-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.circle-img-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--mint-bg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-circle:hover .circle-img-wrapper {
    transform: scale(1.1);
    border-color: var(--accent-green);
}

.product-circle h3 {
    font-size: 18px;
    color: var(--primary-green);
    font-weight: 700;
}

/* Why Choose Us Section */
/* --- About Us Section Styles --- */
#section6 {
    background-color: var(--mint-bg);
    padding: 100px 8%;
}

.about-container {
    max-width: 1100px;
    width: 100%;
}

.section-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    justify-content: center;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid #ddd;
    border-bottom: 5px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
}

.about-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;

}

.about-card i {
    font-size: 3rem;
    color: var(--accent-green);
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.about-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-card p {
    font-size: 0.95rem;
    color: #666;
}

/* تحسين العرض للهواتف */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .about-lead { font-size: 1.1rem; }
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin-top: 40px;
}
.service-item {
    background: white;
    padding: 50px 30px;
    border-radius: 25px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

/* Contact Section - Centered Fix */
#section7 { padding: 0; height: auto; display: flex; flex-direction: column; }
.section7-map-wrapper { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: 100%;
    background: transparent;
}

.contact-panel {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 600px;
    margin: -100px auto 50px; /* Pulls it up over the map */
    z-index: 10;
}

.contact-panel h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: var(--mint-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--dark);
    border: 2px solid transparent;
    width: 400px;
}

.info-item:nth-child(1) {
    margin-right: 0;
}

.info-item:nth-child(2) {
    margin-right: 40px;
}

.info-item:nth-child(3) {
    margin-right: 80px;
}

.info-item:nth-child(4) {
    margin-right: 120px;
}
.info-item:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-item i {
    color: var(--accent-green);
    font-size: 24px;
    transition: color 0.3s;
}

.info-item:hover i {
    color: white;
}

.info-item p {
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.map-container { width: 100%; height: 450px; z-index: 1; }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .circle-img-wrapper { width: 150px; height: 150px; }
    .contact-panel { margin-top: 20px; padding: 40px 20px; }
    .contact-panel h2 { font-size: 2rem; }
    .info-item { padding: 20px; gap: 10px; margin-right: 0; width: 90%; }
    .info-item:nth-child(1) { margin-right: 0; }
    .info-item:nth-child(2) { margin-right: 0; }
    .info-item:nth-child(3) { margin-right: 0; }
    .info-item:nth-child(4) { margin-right: 0; }
    .info-item i { font-size: 20px; }
    .info-item p { font-size: 0.9rem; }
    #section2 { padding-top: 120px; }
    section { padding: 60px 15px; }
    .services-list { gap: 20px; max-width: 100%; }
    .service-item { padding: 30px 20px; max-width: 100%; flex: 1 1 45%; }
    .circle-gallery { 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .product-circle h3 { font-size: 16px; }
    .hero-text { margin-top: 30px; padding: 0 20px; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text button { padding: 12px 25px; font-size: 16px; }
}
  

/* Extra small screens */
@media (max-width: 720px) {
    nav { padding: 0 5%; height: 80px; }
    nav.scrolled { height: 60px; }

    nav ul { gap: 20px; }
    nav ul li a { font-size: 16px; }

    .circle-container { width: 350px; height: 350px; }
    .card { width: 90px; height: 90px; }
    .center-circle { width: 120px; height: 120px; }
    .center-circle h1 { font-size: 14px; }
    .center-circle p { font-size: 10px; }
    /* Radius: 115px */
    .item-1 { transform: translate(115px, 0); }
    .item-2 { transform: translate(81px, 81px); }
    .item-3 { transform: translate(0, 115px); }
    .item-4 { transform: translate(-81px, 81px); }
    .item-5 { transform: translate(-115px, 0); }
    .item-6 { transform: translate(-81px, -81px); }
    .item-7 { transform: translate(0, -115px); }
    .item-8 { transform: translate(81px, -81px); }
    section { padding: 40px 10px; }
    .circle-gallery { 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .circle-img-wrapper { width: 120px; height: 120px; }
    .contact-panel { padding: 30px 15px; max-width: 95%; }
    .info-item { padding: 15px 10px; width: 85%; }
    .info-item:nth-child(1) { margin-right: 0; }
    .info-item:nth-child(2) { margin-right: 0; }
    .info-item:nth-child(3) { margin-right: 0; }
    .map-container { height: 300px; }
/* Replace this in your @media (max-width: 480px) */
.hero-text {
    padding: 0 10px;
    width: 90%; /* Give it a defined width so it doesn't hit edges */
}

.hero-text h1 {
    font-size: 1.4rem !important; /* Forces a smaller size */
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.1rem !important;
    line-height: 1.4;
}
    .services-list { gap: 15px; max-width: 100%; }
    .service-item { padding: 25px 15px; flex: 1 1 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-card { padding: 20px 15px; }
    .about-card img { height: 120px; }
    .about-card i { font-size: 2.5rem; margin-bottom: 15px; }
    .about-card h3 { font-size: 1.2rem; }
    .about-card p { font-size: 0.9rem; }


}

.section5-alt {
    background-color: #f0f4f8;
    padding: 80px 20px;
    text-align: center;
}

#section5-alt h1 {
    margin-bottom: 40px;
}

#section5-alt-secondary {
    background-color: #1a0938; /* purple */
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

#section5-alt-secondary .side-by-side-content.panel {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 24px;
    min-height: 260px;

}

#section5-alt-secondary .side-by-side-content.panel .side-image {
    flex: 0 0 30%;
    max-width: 30%;
}

#section5-alt-secondary .side-by-side-content.panel .side-text {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 10px;
    text-align: right;
}

#section5-alt-secondary .side-by-side-content.panel .side-text h1,
#section5-alt-secondary .side-by-side-content.panel .side-text p {
    color: #000000;
}

#section5-alt-secondary .side-by-side-content.panel .side-text .cta-button {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--accent-green);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--accent-green);
    transition: all 0.2s ease;
}

#section5-alt-secondary .side-by-side-content.panel .side-text .cta-button:hover {
    background: #714091;
    border-color: #170e66;
}


#section5-alt-secondary .side-by-side-content.panel .side-image img {
    border: 3px solid #fff;
}

/* Desktop view: center align image and text vertically */
@media (min-width: 769px) {
    #section5-alt-secondary .side-by-side-content.panel {
        align-items: center;
    }
}

.section5-container {
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.side-by-side-content {
  display: flex;
  align-items: flex-start; /* Align images and text at top so all rows line up */
  justify-content: center;
  gap: 50px;           /* Space between image and text */
  max-width: 1200px;
  margin: 0 auto 40px; /* add bottom space between each block */
  flex-wrap: wrap;
  padding-bottom: 40px; /* additional spacing inside each block */
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-by-side-content .side-image,
.side-by-side-content .side-text {
  flex: 1 1 400px;
  min-width: 280px;
}

.side-by-side-content .side-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--accent-green);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  max-height: 400px;
}

footer {
    background: var(--white);
    padding: 60px 20px;
    color: #ffffff;
    border-top: 4px solid var(--accent-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Social Buttons Styling */
.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: rgba(86, 44, 124, 0.5);
    color: var(--mint-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: #0a1069;
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #128d3d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-link {
    color: #696969; /* Your mint green color */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 1); /* Very subtle background */
}

.contact-link i {
    color: #6805aa; /* Your accent green */
    font-size: 1rem;
}

/* Hover Effect 🚀 */
.contact-link:hover {
    color: #ffffff;
    background: rgb(25, 9, 82); /* Fills with a tint of green */
    transform: scale(1.05);
}

/* Mobile Tweak */
@media (max-width: 480px) {
    .contact-link {
        font-size: 0.95rem;
    }
}

/* Responsive Tweak */
@media (max-width: 480px) {
    footer {
        padding: 40px 15px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}