/* Home Page Specific Styles */

/* ===== HERO SECTION STYLES ===== */
.hero-area {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1c1e53 0%, #2d325a 100%);
}

.hero-area-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.intro-carousel {
    height: 100%;
}

.intro-content {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Background Images for Slides */
.intro-content.slide-one {
    background-image: linear-gradient(135deg, rgba(28, 30, 83, 0.8) 0%, rgba(45, 50, 90, 0.8) 100%), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hero-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="%231c1e53"/><rect width="100%" height="100%" fill="url(%23hero-pattern)"/></svg>');
}

.intro-content.slide-two {
    background-image: linear-gradient(135deg, rgba(28, 30, 83, 0.8) 0%, rgba(45, 50, 90, 0.8) 100%), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hero-pattern-2" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="40" height="40" fill="%23ffffff" opacity="0.05"/><rect x="40" y="40" width="40" height="40" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="%232d325a"/><rect width="100%" height="100%" fill="url(%23hero-pattern-2)"/></svg>');
}

.intro-content.slide-three {
    background-image: linear-gradient(135deg, rgba(28, 30, 83, 0.8) 0%, rgba(45, 50, 90, 0.8) 100%), 
                      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hero-pattern-3" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="3" fill="%23ffffff" opacity="0.08"/><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.06"/><circle cx="90" cy="90" r="1" fill="%23ffffff" opacity="0.06"/></pattern></defs><rect width="100%" height="100%" fill="%231c1e53"/><rect width="100%" height="100%" fill="url(%23hero-pattern-3)"/></svg>');
}

.slider-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
    animation: heroFadeIn 1s ease-out;
}

.slider-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    border-radius: 2px;
    opacity: 0;
    animation: slideInFromTop 1s ease-out 0.5s forwards;
}

.layer-1 {
    margin-bottom: 30px;
    animation: slideInFromLeft 1s ease-out 0.7s both;
}

.layer-1 .subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #2d325a;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    animation: scaleIn 0.8s ease-out 1s both;
}

.layer-1 .title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

.layer-2 {
    margin-bottom: 40px;
    animation: slideInFromRight 1s ease-out 0.9s both;
}

.layer-2 .text {
    font-size: 1.3rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.layer-3 {
    animation: slideInFromBottom 1s ease-out 1.1s both;
}

.layer-3 .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.layer-3 .btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #2d325a;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.layer-3 .btn-primary:hover {
    background: linear-gradient(135deg, #2d325a 0%, #1c1e53 100%);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(45, 50, 90, 0.5);
}

.layer-3 .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.layer-3 .btn-primary:hover::before {
    left: 100%;
}

/* Owl Carousel Controls */
.owl-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.owl-nav .owl-prev {
    left: 30px;
}

.owl-nav .owl-next {
    right: 30px;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.owl-dots {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active {
    background: #ffd700;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-area {
        height: 80vh;
        min-height: 500px;
    }
    
    .intro-content {
        height: 80vh;
        min-height: 500px;
    }
    
    .layer-1 .title {
        font-size: 2.5rem;
    }
    
    .layer-2 .text {
        font-size: 1.1rem;
    }
    
    .layer-3 .btn {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .owl-nav .owl-prev,
    .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .owl-nav .owl-prev {
        left: 20px;
    }
    
    .owl-nav .owl-next {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-area {
        height: 70vh;
        min-height: 400px;
    }
    
    .intro-content {
        height: 70vh;
        min-height: 400px;
    }
    
    .layer-1 .title {
        font-size: 2rem;
    }
    
    .layer-1 .subtitle {
        font-size: 16px;
        padding: 10px 25px;
    }
    
    .layer-2 .text {
        font-size: 1rem;
    }
    
    .slider-content {
        padding: 0 20px;
    }
}

/* RTL Support for Hero Section */
[dir="rtl"] .layer-1 {
    animation: slideInFromRight 1s ease-out 0.7s both;
}

[dir="rtl"] .layer-2 {
    animation: slideInFromLeft 1s ease-out 0.9s both;
}

[dir="rtl"] .owl-nav .owl-prev {
    left: auto;
    right: 30px;
}

[dir="rtl"] .owl-nav .owl-next {
    right: auto;
    left: 30px;
}

/* ===== END HERO SECTION STYLES ===== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Consistent Button Patterns */
/* Blue Background Section Buttons */
.btn-blue-section-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%) !important;
    color: #2d325a !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    text-shadow: none !important;
}

.btn-blue-section-primary:hover {
    background: linear-gradient(135deg, #2d325a 0%, #1c1e53 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(45, 50, 90, 0.4) !important;
}

.btn-blue-section-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-blue-section-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

/* White Background Section Buttons */
.btn-white-section-primary {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-white-section-primary:hover {
    background: linear-gradient(135deg, #2d325a 0%, #1c1e53 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(45, 50, 90, 0.4) !important;
}

.btn-white-section-secondary {
    background: transparent !important;
    color: #2d325a !important;
    border: 2px solid #2d325a !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-white-section-secondary:hover {
    background: #2d325a !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(45, 50, 90, 0.3) !important;
}

/* RTL Support for Buttons */
[dir="rtl"] .btn i {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

[dir="rtl"] .btn-blue-section-primary i,
[dir="rtl"] .btn-blue-section-secondary i,
[dir="rtl"] .btn-white-section-primary i,
[dir="rtl"] .btn-white-section-secondary i {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

/* Mobile Responsive Buttons */
@media (max-width: 768px) {
    .btn-blue-section-primary,
    .btn-blue-section-secondary,
    .btn-white-section-primary,
    .btn-white-section-secondary {
        padding: 14px 32px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .btn-blue-section-primary,
    .btn-blue-section-secondary,
    .btn-white-section-primary,
    .btn-white-section-secondary {
        padding: 12px 28px !important;
        font-size: 0.95rem !important;
    }
}

/* Animation Keyframes */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,215,0,0.1); }
    50% { box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 50px rgba(255,215,0,0.2); }
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.6), 0 0 30px rgba(255,215,0,0.4); }
}

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

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #ffd700; }
}

@keyframes menuCardFadeIn {
    from { opacity: 0; transform: translateY(60px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes menuCardHover {
    0% { transform: translateY(0) scale(1) rotate(0deg); }
    25% { transform: translateY(-12px) scale(1.03) rotate(1deg); }
    50% { transform: translateY(-8px) scale(1.02) rotate(-0.5deg); }
    75% { transform: translateY(-10px) scale(1.025) rotate(0.5deg); }
    100% { transform: translateY(-8px) scale(1.02) rotate(0deg); }
}

@keyframes priceGlow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
}

@keyframes menuTitleGlow {
    0% { text-shadow: 0 0 5px rgba(45, 50, 90, 0.3); }
    50% { text-shadow: 0 0 15px rgba(45, 50, 90, 0.6); }
    100% { text-shadow: 0 0 5px rgba(45, 50, 90, 0.3); }
}

@keyframes menuImageShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes modernShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes modernPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spinIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Why Choose Section Styles */
.why-choose-section .feature-text {
    color: #2d325a !important;
}

.why-choose-section .feature-card:hover {
    background: #1c1e53 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

.why-choose-section .feature-card:hover .feature-text {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.why-choose-section .feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.why-choose-section .feature-card:hover .feature-icon i {
    color: #ffffff !important;
}

/* RTL Support */
[dir="rtl"] .why-choose-section .feature-card {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .why-choose-section .feature-card .feature-content {
    text-align: right !important;
}

[dir="rtl"] .why-choose-section .feature-card .feature-icon {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-choose-section .feature-card {
        padding: 0.4rem 0.8rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .why-choose-section .feature-card:hover {
        transform: translateY(-1px) !important;
    }
    
    .why-choose-section .feature-card .feature-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .why-choose-section .feature-card .feature-icon i {
        font-size: 0.8rem !important;
    }
}

/* Touch Device Support */
@media (hover: none) {
    .why-choose-section .feature-card:active {
        background: #1c1e53 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-1px) !important;
    }
    
    .why-choose-section .feature-card:active .feature-text {
        color: #ffffff !important;
        font-weight: 500 !important;
    }
    
    .why-choose-section .feature-card:active .feature-icon {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .why-choose-section .feature-card:active .feature-icon i {
        color: #ffffff !important;
    }
}

/* Animated Border for Location Cards */
@keyframes borderGlow {
    0% { border-color: transparent; }
    25% { border-color: rgba(255, 140, 0, 0.3); }
    50% { border-color: rgba(255, 140, 0, 0.6); }
    75% { border-color: rgba(255, 140, 0, 0.3); }
    100% { border-color: transparent; }
}

/* Branch page styles matching the dedicated branches page */
.branch-page .single-branch {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.branch-page .single-branch:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.branch-page .single-branch iframe {
    height: 280px !important;
    width: 100% !important;
}

.branch-page .single-branch .content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.95), rgba(255, 165, 0, 0.95));
    width: 75%;
    padding: 20px;
    border-radius: 0px 30px 0px 0px;
    backdrop-filter: blur(10px);
}

.branch-page .single-branch .content .top-area {
    text-align: center;
    margin-bottom: 15px;
}

.branch-page .single-branch .content .top-area .icon {
    width: 30px;
    height: 30px;
    background: #ffffff;
    display: inline-block;
    line-height: 30px;
    color: #1c1e53;
    border-radius: 50%;
}

.branch-page .single-branch .content .top-area h4 {
    font-weight: 700;
    margin-top: 8px;
    text-transform: uppercase;
    color: #1c1e53;
    font-size: 1.1rem;
}

/* View All Branches Button Hover Effect */
.view-all-branches-btn:hover {
    background: linear-gradient(135deg, #1a1a2e, #2d325a) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4) !important;
    transition: all 0.3s ease !important;
}

.branch-page .single-branch .content ul li {
    font-size: 13px;
    line-height: 20px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    color: #1c1e53;
}

.branch-page .single-branch .content ul li:last-child {
    margin-bottom: 0;
}

.branch-page .single-branch .content ul li i {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #1c1e53;
}

/* Contact Section Styles */
.contact-location-section {
    position: relative;
}

.contact-card,
.map-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2) !important;
    backdrop-filter: blur(10px);
}

.contact-card:hover,
.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.contact-icon-wrapper {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
}

.contact-info h5 {
    transition: color 0.3s ease;
}

.contact-item:hover .contact-info h5 {
    color: #1e40af !important;
}

/* Map container styles */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 15px !important;
}

.map-placeholder {
    transition: all 0.3s ease;
}

.map-card:hover .map-placeholder {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb) !important;
    border-color: #2196f3 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card,
    .map-card {
        padding: 1.5rem !important;
    }
    
    .contact-icon-wrapper {
        width: 40px !important;
        height: 40px !important;
    }
    
    .contact-icon-wrapper i {
        font-size: 1rem !important;
    }
    
    .contact-info h5 {
        font-size: 1rem !important;
    }
    
    .contact-info p {
        font-size: 0.9rem !important;
    }
    
    .map-container {
        height: 250px !important;
    }
}

@media (max-width: 576px) {
    .contact-card,
    .map-card {
        padding: 1.25rem !important;
    }
    
    .contact-icon-wrapper {
        width: 35px !important;
        height: 35px !important;
    }
    
    .contact-icon-wrapper i {
        font-size: 0.9rem !important;
    }
}

/* Modern About Us Section Responsive Styles */
@media (max-width: 1200px) {
    .modern-about-section .main-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    }
    
    .modern-about-section .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 15px !important;
    }
}

@media (max-width: 991px) {
    .modern-about-section .content-wrapper {
        padding: 30px 0 !important;
        text-align: center !important;
    }
    
    .modern-about-section .title-underline {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .modern-about-section .features-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto 30px !important;
    }
    
    .modern-about-section .cta-section {
        justify-content: center !important;
    }
    
    .modern-about-section .image-container {
        transform: rotate(0deg) !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 40px 0 !important;
    }
    
    .modern-about-section .main-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 20px !important;
    }
    
    .modern-about-section .description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
    
    .modern-about-section .feature-card {
        padding: 20px !important;
    }
    
    .modern-about-section .cta-btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
    
    .modern-about-section .image-container {
        padding: 15px !important;
    }
    
    .modern-about-section .image-inner img,
    .modern-about-section .image-inner div {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .modern-about-section .section-badge {
        font-size: 0.8rem !important;
        padding: 6px 15px !important;
    }
    
    .modern-about-section .main-title {
        font-size: 1.8rem !important;
    }
    
    .modern-about-section .description {
        font-size: 0.95rem !important;
    }
    
    .modern-about-section .features-grid {
        gap: 12px !important;
    }
    
    .modern-about-section .feature-card {
        padding: 18px !important;
    }
    
    .modern-about-section .feature-icon {
        width: 40px !important;
        height: 40px !important;
    }
}
