:root {
    --primary-color: #6B5B95;
    --secondary-color: #4B3C75;
    --text-dark: #2E1A47;
    --text-medium: #4a3d5f;
    --text-light: #6B5B95;
    --background-light: #f7f8fc;
    --background-medium: #f9f9fb;
    --background-gradient-start: #f0e4ff;
    --background-gradient-end: #e6d0ff;
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.1);
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 30px;
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 100px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}



/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
    padding: 0 var(--spacing-md);
    /* Background is now handled inline in HTML for dynamic changes */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
/* Removed unused .hero p rule */

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius-large);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border: 2px solid transparent;
    /* Ensure consistent border for all buttons */
}

.btn:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

/* About Section */
.about-us {
    padding: var(--spacing-xxl) var(--spacing-md);
    background-color: var(--background-medium);
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-medium);
}

.about-content {
    max-width: 600px;
    text-align: left;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Animations */
.fade-up,
.fade-left {
    opacity: 0;
    transition: all 1s ease-out;
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-up.show,
.fade-left.show {
    opacity: 1;
    transform: translate(0);
}

/* Responsive for About Section */
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }
}

/* Numbers Section */
.numbers-section {
    padding: 60px 100px;
    background: linear-gradient(135deg, #f6f6fd, #e0e0f0);
    /* Adjusted gradient for consistency */
    position: relative;
    overflow: hidden;
    color: #361e55;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: rotate(25deg);
    pointer-events: none;
}

.numbers-section .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.numbers-section .left h6 {
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);

}

.numbers-section .left h2 {
    font-size: 52px;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.numbers-section .left h2 span {
    color: var(--primary-color);
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.numbers-section .right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.numbers-section .row {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.counter-box {
    background: white;
    padding: 18px 25px;
    border-radius: var(--border-radius-medium);
    text-align: center;
    flex: 1;
    min-width: 180px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-4px);
}

.counter-box h3 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.counter-box p {
    color: #555;
    font-weight: 500;
    font-size: 15px;
}

.fade-up-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-up-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Transition delays for counter boxes (can be dynamic with JS if needed) */
.counter-box:nth-child(1) {
    transition-delay: 0.1s;
}

.counter-box:nth-child(2) {
    transition-delay: 0.3s;
}

.counter-box:nth-child(3) {
    transition-delay: 0.5s;
}

.counter-box:nth-child(4) {
    transition-delay: 0.7s;
}

.counter-box:nth-child(5) {
    transition-delay: 0.9s;
}

/* Private Label Section */
.private-label-section {
    padding: 80px 50px;
    background: linear-gradient(130deg, var(--background-medium));
    color: var(--text-dark);
}

.flex-section {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    flex-wrap: wrap;
}

.left-content {
    flex: 1 1 500px;
    max-width: 600px;
    padding-right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.right-content {
    flex: 1 1 400px;
}

.offer-image {
    width: 85%;
    border-radius: var(--border-radius-medium);
    object-fit: cover;
    will-change: transform, opacity;
}



/* Text Content */
.text-content h2 {
    font-size: 13px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.text-content h2 span {
    display: block;
    font-size: 28px;
    margin-top: 5px;
    color: #361e55;
    /* Using direct color as it's a specific shade */
}

.text-content p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--text-dark);
}

/* Buttons specific to Private Label Section - overriding global .btn */
.private-label-section .btn {
    padding: 10px 25px;
    background-color: #361e55;
    /* Specific color for this section's primary button */
    color: #fff;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    border: 2px solid transparent;
}

.private-label-section .btn:hover {
    background-color: transparent;
    border: 2px solid #361e55;
    color: #361e55;
}

.private-label-section .secondary-btn {
    background-color: transparent;
    border: 2px solid #361e55;
    color: #361e55;
}

.private-label-section .secondary-btn:hover {
    background-color: #361e55;
    color: #fff;
}

/* Offers */
.offers {
    margin-top: var(--spacing-lg);
}

.offers h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.offer-lists {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.offer-list {
    flex: 1;
    min-width: 150px;
    list-style: none;
    padding: 0;
}

.offer-list li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* General Responsive Adjustments */
/* Hamburger Menu (Mobile) */
.hamburger {
    display: none; /* Hidden by default on desktop */
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger animation for 'X' */
.nav-active .hamburger div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-active .hamburger div:nth-child(2) {
    opacity: 0;
}

.nav-active .hamburger div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
        /* Remove flex-direction: column and gap for mobile layout */
    }

    /* Show hamburger and hide nav-links by default on mobile */
    .hamburger {
        display: flex; /* Changed from block to flex to ensure it's visible and centered if needed */
        flex-direction: column;
        justify-content: space-around;
        height: 25px; /* Adjust height for better look */
    }

    .nav-links {
        position: absolute;
        top: 100%; /* Position below the navbar */
        left: 0;
        width: 100%;
        height: 0; /* Start hidden */
        overflow: hidden;
        flex-direction: column;
        align-items: flex-start; /* Align links to the left */
        gap: 0; /* Links will use padding/margin for spacing */
        background-color: var(--background-light);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: height 0.3s ease-in-out;
        z-index: 99;
    }

    /* Style individual list items for mobile */
    .nav-links li {
        width: 100%;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    /* Active state for mobile menu */
    .nav-active .nav-links {
        height: auto; /* Will be set dynamically by JS to fit content */
        max-height: 500px; /* A large enough value for transition */
    }

    .hero h1 {
        font-size: 36px;
    }

    .numbers-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .numbers-section .content {
        flex-direction: column;
        text-align: center;
    }

    .private-label-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .flex-section {
        flex-direction: column;
        text-align: center;
    }

    .left-content,
    .right-content {
        max-width: 100%;
        padding-right: 0;
    }

    .offer-image {
        width: 100%;
    }

    .buttons {
        justify-content: center;
    }

    .offer-lists {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-content h2,
    .numbers-section .left h2,
    .text-content h2 {
        font-size: 30px;
    }

    .text-content h2 span {
        font-size: 1.2rem;
    }
}

.fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

.offer-list li {
    position: relative;
    padding-left: 28px;
    /* مسافة قبل النص */
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

/* إضافة علامة الصح */
.offer-list li::before {
    content:;
    /* إشارة الصح */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

/* Our Services Section */
:root {
    --primary-color: #6B5B95;
    --secondary-color: #4B3C75;
    --text-dark: #2E1A47;
    --text-medium: #4a3d5f;
    --text-light: #6B5B95;
    --background-light: #f7f8fc;
    --background-medium: #f9f9fb;
    --background-gradient-start: #f0e4ff;
    --background-gradient-end: #e6d0ff;
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 30px;
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 100px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Our Services Section - IMPROVED */
.our-services-section {
    padding: 80px 50px;
    background: var(--background-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid for service cards - UPDATED TO DISPLAY ALL 6 IN ONE ROW */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Individual service card - IMPROVED */
.service-card {
    background: white;
    padding: 25px 15px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--border-radius-medium);
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 14px;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Animation: fade-up for service cards */
.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effect - IMPROVED */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Decorative elements */
.services-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 91, 149, 0.05), rgba(75, 60, 117, 0.05));
    z-index: 0;
}

.decoration-1 {
    top: -50px;
    left: -50px;
}

.decoration-2 {
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
}

/* Responsive adjustments - UPDATED */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card img {
        height: 160px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 60px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card img {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-services-section {
        padding: 50px 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .service-card {
        padding: 20px 15px;
    }
}


.services-cta {
    text-align: center;
    margin: 30px 0;
}

.services-cta .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.services-cta .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Alisar Brand Section */

.alisar-brand-section {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--background-light);
    color: var(--text-dark);
    text-align: left;
}

.alisar-brand-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);

}

.alisar-brand-section .section-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;

}

.alisar-brand-section .brand-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: row-reverse;
}

.alisar-brand-section .brand-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
}

.alisar-brand-section .brand-text {
    max-width: 500px;
    text-align: left;
}

.alisar-brand-section .brand-text h3 {
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.alisar-brand-section .brand-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.alisar-brand-section .brand-text .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alisar-brand-section .brand-text .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Responsive */
@media (max-width: 900px) {
    .alisar-brand-section .brand-content {
        flex-direction: column;
        text-align: center;
    }

    .alisar-brand-section .brand-text {
        text-align: center;
    }
}

:root {
    --primary-color: #6B5B95;
    --secondary-color: #4B3C75;
    --text-dark: #2E1A47;
    --text-medium: #4a3d5f;
    --text-light: #6B5B95;
    --background-light: #f7f8fc;
    --background-medium: #f9f9fb;
    --background-gradient-start: #f0e4ff;
    --background-gradient-end: #e6d0ff;
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 30px;
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 100px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Alisar Brand Section - MODIFIED */
.alisar-brand-section {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--background-light);
    color: var(--text-dark);
}

.alisar-brand-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.alisar-brand-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    text-align: center;
}

.alisar-brand-section .section-subtitle {
    font-size: 15px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
    text-align: center;
}

.alisar-brand-section .brand-content {
    display: flex;
    flex-direction: row-reverse;
    /* This will reverse the order - image on right */
    gap: var(--spacing-xl);
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.alisar-brand-section .brand-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.alisar-brand-section .brand-image img {
    width: 100%;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
}

.alisar-brand-section .brand-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.alisar-brand-section .brand-text h3 {
    font-size: 28px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.alisar-brand-section .brand-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.alisar-brand-section .brand-text .btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.alisar-brand-section .brand-text .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Animation */
.fade-up-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-up-section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .alisar-brand-section .brand-content {
        flex-direction: column;
        text-align: center;
    }

    .alisar-brand-section .brand-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .alisar-brand-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .alisar-brand-section .section-title {
        font-size: 32px;
    }

    .alisar-brand-section .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .alisar-brand-section .section-title {
        font-size: 28px;
    }

    .alisar-brand-section .brand-text h3 {
        font-size: 24px;
    }
}

/* Contact Section - Creative Style */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f6f6fd, #e0e0f0);
}

.contact-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #2E1A47;
}

.contact-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a3d5f;
}

.contact-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-box, .map-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 400px;
}

.contact-box h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #6B5B95;
}

.contact-box p {
    margin-bottom: 10px;
    color: #4a3d5f;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.5rem;
    color: #4B3C75;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: #3a3a6a;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
}

/* CTA Button */
.contact-cta {
    text-align: center;
    margin-top: 30px;
}

/* Fade-in Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 768px){
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
}



/* FOOTER */
.footer-section {
  background-color: #2E1A47;
  color: #ffffff;
  padding: 70px 20px;
  /* Adjusted padding */
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 280px;
}

.footer-about h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 600;
  background: linear-gradient(90deg, #B8A1D9, #6B5B95);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 5px;
}

.footer-about span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #B8A1D9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-about p {
  line-height: 1.7;
  color: #EDE6F7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #B8A1D9;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #B8A1D9;
}

.footer-contact p,
.footer-contact a {
  color: #EDE6F7;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
  /* Prevents overflow */
}

.footer-social a {
  margin-right: 12px;
  font-size: 22px;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #B8A1D9;
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #4A3D5F;
  color: #CFC9DD;
  font-size: 14px;
}

