/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&amp;family=Roboto:wght@400;500;700&amp;display=swap');

/* --- CSS Variables --- */
:root {
    --primary-color: #3a6df0;
    --secondary-color: #1a202c;
    --accent-color: #2d3748;
    --text-color: #e2e8f0;
    --bg-color: #0f172a;
    --bg-color2: #0f172a9d;
    --surface-color: #1e293b;
    --font-family-primary: 'Poppins', sans-serif;
    --font-family-secondary: 'Roboto', sans-serif;
    --transition-speed: 0.3s ease;
}

.light-mode {
    --primary-color: #3a6df0;
    --secondary-color: #f7fafc;
    --accent-color: #edf2f7;
    --text-color: #2d3748;
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}



.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

.web-package-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.package-content {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.package-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.package-image::before,
.package-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.1;
    z-index: 1;
}

.package-image::before {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    filter: blur(30px);
}

.package-image::after {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: linear-gradient(225deg, var(--primary-color), transparent);
    filter: blur(25px);
}

.package-image .shape-1,
.package-image .shape-2,
.package-image .shape-3 {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.08;
    z-index: 1;
}

.package-image .shape-1 {
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 20px;
    left: 20px;
    transform: rotate(15deg);
}

.package-image .shape-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    bottom: 30px;
    right: 30px;
}

.package-image .shape-3 {
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 50px;
    right: 100px;
    transform: rotate(-45deg);
}

.package-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* PC-specific styles */
@media (min-width: 1024px) {
    .package-content {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }
    
    .package-image {
        flex: 1;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.1);
    }
    
    .package-image img {
        max-height: 500px;
        width: auto;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .package-details {
        flex: 1;
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .package-image:hover img {
        transform: scale(1.02);
    }
}

.package-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-details h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.package-details p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-price {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 1.5rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.package-price span {
    font-size: 1.8rem;
    color: #fff;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(58, 109, 240, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-price:hover span {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(58, 109, 240, 0.4);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
}

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

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 15px rgba(58, 109, 240, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 109, 240, 0.5);
}

/* --- Header & Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: var(--bg-color2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.782);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

#navbar .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    gap: 12px;
}

#navbar .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

#navbar .logo a span {
    color: var(--text-color);
    display: flex;
    align-items: center;
}

#navbar .logo a span span {
    color: var(--primary-color);
    margin-left: 2px;
}

#navbar .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#navbar .nav-links .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#navbar .nav-links .nav-link:hover {
    color: var(--primary-color);
}

#navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.light-mode #navbar.scrolled {
     background-color: rgba(255, 255, 255, 0.8);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

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

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color var(--transition-speed);
}

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

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

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

#mode-toggle {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 50%;
    transition: all var(--transition-speed);
}

#mode-toggle:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-color) url('https://www.transparenttextures.com/patterns/cubes.png');
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #a0aec0;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.light-mode .hero-content p {
    color: #718096;
}

/* --- About Section --- */
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 25px rgba(58, 109, 240, 0.3);
}

.about-content p {
    flex: 1;
    font-size: 1.1rem;
}

/* --- Services Section --- */
#services {
    background-color: var(--surface-color);
}

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

.card {
    background: var(--bg-color);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 0 25px rgba(58, 109, 240, 0.4);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
}

.card:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 15px var(--primary-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color var(--transition-speed);
}

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

/* --- Projects Section --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.project-item:hover img {
    transform: scale(1.1);
    filter: blur(5px);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: #fff;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* --- Web Package Section --- */
.web-package-section {
    background-color: var(--surface-color);
}

.package-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.package-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.package-details h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.package-price span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
}

/* --- Testimonials Section --- */
#testimonials {
    background-color: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 4.5rem 2rem 2.5rem; /* Increased top padding for space below profile pic */
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--accent-color);
    transition: all var(--transition-speed);
    position: relative;
    margin-top: 50px; /* Space for the profile picture */
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 0 20px rgba(58, 109, 240, 0.3);
    border-color: var(--primary-color);
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #a0aec0;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.quote::before, .quote::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
}

.quote::before {
    top: -10px;
    left: -5px;
}

.quote::after {
    bottom: -20px;
    right: -5px;
}

.author-info {
    margin-top: auto;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.author-title {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* --- Contact Section --- */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    gap: 1.5rem;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--accent-color);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-family: var(--font-family-primary);
}

#contact-form button {
    align-self: center;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--secondary-color);
    color: #a0aec0; /* A slightly lighter grey for better readability */
    padding: 4rem 0 0;
    font-size: 0.95rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
}

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

.about-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social-links a {
    display: inline-block;
    color: #a0aec0;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1rem;
   
    transition: all var(--transition-speed);
}

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

.links-column ul {
    list-style: none;
}

.links-column ul li {
    margin-bottom: 0.8rem;
}

.links-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.links-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-column p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.contact-column a {
    color: #a0aec0;
    text-decoration: none;
}
.contact-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #0d1221; /* Even darker for contrast */
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom {
    margin-top: 2rem; /* Add space above copyright bar */
}

.footer-bottom p {
  
    font-size: 0.9rem;
}


/* --- Back to Top Button --- */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#contact {
    background-color: var(--accent-color);
}

/* --- Form Success Message --- */
#form-result {
    margin-top: 2rem;
    text-align: center;
}

.success-message {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
}

/* --- Responsive Design --- */
/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure form elements are mobile-friendly */
input, textarea, button, select {
    font-size: 16px !important; /* Prevents iOS zoom on focus */
}

/* Tap target sizes for mobile */
a, button, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
}

@media (max-width: 992px) {
    .package-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .package-image {
        min-height: 300px;
    }
    
    .package-details {
        padding: 2rem;
    }
    
    .package-details h3 {
        font-size: 1.75rem;
    }
    
    .package-price {
        font-size: 1.3rem;
    }
    
    .package-price span {
        color: #ffff;
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        width: 100%;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: var(--accent-color);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    #navbar {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding-top: 6rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image, .about-text {
        width: 100%;
        padding: 0;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }

    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        width: 100%;
        margin-bottom: 1rem;
    }

    .package-content {
        grid-template-columns: 1fr;
        padding: 0;
        text-align: center;
        gap: 0;
        border-radius: 8px;
    }
    
    .package-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .package-image {
        min-height: 250px;
        width: 100%;
    }
    
    .package-details {
        width: 100%;
        padding: 1.5rem;
    }

    .package-details h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .package-details p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    /* Ensure proper spacing for mobile */
    section {
        padding: 3rem 0;
    }
    
    /* Adjust section titles for mobile */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 2rem;
    }
    
    /* Make buttons full width on mobile */
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 1rem !important;
    }
    
    /* Improve form spacing on mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure images don't overflow */
    .package-image img, 
    .service-card img, 
    .about-image img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .footer-column {
        padding: 0 1rem;
    }
    
    .footer-column h4 {
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary-color);
    }
    
    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}
