:root {
    /* Light Mode Colors */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --bg-light: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-card: #ffffff;
    --bg-body: #f1f5f9;
    --bg-header: rgba(255, 255, 255, 0.9);
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-en: 'Inter', sans-serif;
    --font-ar: 'Noto Sans Arabic', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --primary: #60a5fa;
    --primary-dark: #3b82f6;
    --primary-light: #93c5fd;
    --dark: #f8fafc;
    --light: #1e293b;
    --border: #334155;
    --bg-light: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --bg-card: #1e293b;
    --bg-body: #0f172a;
    --bg-header: rgba(15, 23, 42, 0.9);
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Base Styles */
body {
    font-family: var(--font-ar);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-body);
    transition: var(--transition);
    padding: 0;
    margin: 0;
}

/* Header Styles */
.site-header {
    background: var(--bg-header);
    box-shadow: 0 1px 3px var(--shadow-color);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    height: 72px;
}

.navbar {
    padding: 0.75rem 0;
    position: relative;
    width: 100%;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100vw;
    height: calc(100vh - 120px);
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.swiper-slide {
    width: 100vw;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active img {
    transform: scale(1);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Cards Section */
.cards-section {
    padding: 4rem 0;
    background: var(--bg-card);
}

.content-card {
    background: var(--bg-card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-body p {
    color: var(--text-secondary);
}

/* Posts Section */
.posts-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.post-card {
    background: var(--bg-card);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.post-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-content p {
    color: var(--text-secondary);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1101;
    box-shadow: var(--shadow-md);
}

[dir="rtl"] .theme-toggle {
    left: 2rem;
    right: auto;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--bg-light);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Footer Styles */
.site-footer {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 5rem 0 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.footer-about {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

[dir="ltr"] .footer-section h4::after {
    left: 0;
    right: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

[dir="rtl"] .footer-links a:hover {
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-contact .icon {
    width: 20px;
    height: 20px;
    margin-inline-end: 0.75rem;
    fill: var(--primary);
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-primary);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link .icon {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 3rem;
    }

    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .social-links {
        margin-top: 1.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    body {
        padding-top: 64px;
    }

    .hero-slider {
        height: calc(100vh - 64px);
        min-height: 400px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 64px;
    }

    .hero-slider {
        height: calc(100vh - 64px);
        min-height: 300px;
    }

    .cards-section,
    .posts-section,
    .gallery-section {
        padding: 3rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: calc(100vh - 64px);
        min-height: 250px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-caption p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Gallery */
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    .gallery-caption h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-header);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: var(--shadow-md);
        z-index: 1100;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
    }

    .navbar-toggler {
        padding: 0.5rem;
        border: none;
        background: transparent;
        position: relative;
        z-index: 1102;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }

    .order-lg-3 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

/* RTL Support */
[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* RTL Support for Mobile Menu */
[dir="rtl"] .navbar-collapse {
    left: 0;
    right: 0;
}

/* Container padding for mobile */
@media (max-width: 767.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Lightbox Custom Styles */
.lb-outerContainer, 
.lb-dataContainer {
    z-index: 1050 !important;
}

#lightbox {
    z-index: 1050 !important;
}

#lightboxOverlay {
    z-index: 1049 !important;
}

/* Theme Toggle in Nav */
.theme-toggle-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    position: relative;
}

.theme-toggle-nav:hover {
    background: var(--bg-light);
}

.theme-toggle-nav svg {
    width: 20px;
    height: 20px;
    position: absolute;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle-nav .moon-icon {
    fill: currentColor;
    stroke: none;
}

/* Remove transform styles and use display property */
[data-theme="dark"] .sun-icon {
    display: none !important;
}

[data-theme="dark"] .moon-icon {
    display: block !important;
}

[data-theme="light"] .sun-icon {
    display: block !important;
}

[data-theme="light"] .moon-icon {
    display: none !important;
}

/* Enhanced Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text */
.section-title {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border-radius: 3px;
}

/* Enhanced Cards */
.content-card {
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-light));
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-card:hover::before {
    transform: scaleX(1);
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(0.8);
}

/* Enhanced Hero Section */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    z-index: 1;
}

.slide-content {
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

/* Enhanced Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px -15px var(--shadow-color);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Enhanced Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enhanced Footer */
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

[dir="rtl"] .footer-links a::before {
    content: '←';
    transform: translateX(10px);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glass Effect for Cards */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .glass-effect {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Static Contact Buttons */
.contact-buttons {
    position: fixed;
    bottom: 2rem;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
}

.contact-buttons .container {
    position: relative;
    pointer-events: none;
}

.whatsapp-button,
.call-button {
    position: fixed;
    bottom: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
}

.whatsapp-button {
    background: #25D366;
    right: 2rem;
}

.call-button {
    background: var(--primary);
    left: 2rem;
}

/* RTL Support */
[dir="rtl"] .whatsapp-button {
    left: 2rem;
    right: auto;
}

[dir="rtl"] .call-button {
    right: 2rem;
    left: auto;
}

.whatsapp-button:hover,
.call-button:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.whatsapp-button svg,
.call-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Floating Animation */
.whatsapp-button,
.call-button {
    animation: floating 3s ease-in-out infinite;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
    .whatsapp-button,
    .call-button {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
    }

    .whatsapp-button {
        right: 1rem;
    }

    .call-button {
        left: 1rem;
    }

    [dir="rtl"] .whatsapp-button {
        left: 1rem;
        right: auto;
    }

    [dir="rtl"] .call-button {
        right: 1rem;
        left: auto;
    }

    .whatsapp-button svg,
    .call-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Slogan Section */
.slogan-section {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    padding: 0.2rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 72px;
}

.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    opacity: 0.95;
}

/* Add animated background effect */
.slogan-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        var(--primary-light) 30%,
        transparent 70%
    );
    opacity: 0.1;
    animation: shimmer 4s linear infinite;
}

.slogan-text {
    text-align: center;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    position: relative;
    padding: 0 2rem;
    animation: pulseText 2s ease-in-out infinite;
}

.slogan-text::before,
.slogan-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    animation: expandLine 1.5s ease-in-out infinite;
}

.slogan-text::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
}

.slogan-text::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-light), var(--primary));
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseText {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

@keyframes expandLine {
    0%, 100% {
        width: 30px;
        opacity: 1;
    }
    50% {
        width: 40px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .slogan-text {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .slogan-text::before,
    .slogan-text::after {
        width: 20px;
    }

    @keyframes expandLine {
        0%, 100% {
            width: 20px;
        }
        50% {
            width: 25px;
        }
    }
}

/* Container overrides for full width */
.hero-slider .container,
.slogan-section .container {
    max-width: 100%;
    padding: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .site-header {
        height: 70px;
    }

    .slogan-section {
        margin-top: 15px;
        padding: 0.5rem 0;
    }
    .hero-slider {
        height: calc(100vh - 100px);
    }
}

@media (max-width: 767.98px) {
    .site-header {
        height: 75px;
    }

    .slogan-section {
        padding: 0.5rem 0;
    }

    .hero-slider {
        height: calc(100vh - 90px);
    }
}

/* Company Info Section */
.company-info {
    padding: 4rem 0;
    background: var(--bg-light);
}

.main-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.services-list ul,
.motto-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.services-list li,
.motto-section li {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
    position: relative;
}

.services-list li::before,
.motto-section li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    right: 0;
    font-weight: bold;
}

.experience {
    font-size: 1.1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 0.5rem;
    border-right: 4px solid var(--primary);
}

.palm-services {
    margin: 2rem 0;
}

.palm-services h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.call-now {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .company-info {
        padding: 2rem 0;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
} 