.process-content p {
    font-size: 1.1rem;
line-height: 1.8;
color: var(--text-light);
    margin-bottom: 2rem;
}

.process-content .appointment-btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 15px 30px;
background: var(--gradient-gold);
color: var(--primary-dark);
border: none;
border-radius: 30px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}

.process-content .appointment-btn:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}

.process-content .appointment-btn i {
transition: transform 0.3s ease;
}

.process-content .appointment-btn:hover i {
transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
.credentials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.expertise-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 992px) {
.process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.process-grid.reverse {
    direction: ltr;
}

.process-content {
    padding: 0;
}
}

@media (max-width: 768px) {
.expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Reduced gap for mobile to fit better */
}

/* Adjust card padding for mobile to fit 2 columns */
.expertise-card {
    padding: 20px 15px;
}

/* Adjust icon size for mobile */
.expertise-icon {
    width: 60px;
    height: 60px;
}

.expertise-icon i {
    font-size: 24px;
}

/* Adjust text size for mobile */
.expertise-card h3 {
    font-size: 1rem;
}

.expertise-card p {
    font-size: 0.9rem;
}
}

@media (max-width: 576px) {
.timeline-item {
    padding-left: 30px;
}

.timeline-icon {
    width: 30px;
    height: 30px;
    left: -40px;
}

.process-content h3 {
    font-size: 1.8rem;
}
}



.map-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, 
    rgba(11, 79, 108, 0.9) 0%,
    rgba(11, 79, 108, 0.8) 40%,
    transparent 100%
);
pointer-events: none;
}

.location-card {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.95);
padding: 30px;
border-radius: var(--border-radius);
max-width: 300px;
backdrop-filter: blur(10px);
box-shadow: var(--shadow-lg);
pointer-events: auto;
}

.location-header {
    display: flex;
    align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.location-header i {
font-size: 2rem;
color: var(--secondary);
}

.location-header h3 {
font-size: 1.5rem;
color: var(--primary-dark);
margin: 0;
}

.location-card p {
color: var(--text-light);
margin: 5px 0;
font-size: 1rem;
line-height: 1.6;
}

.direction-btn {
display: inline-flex;
align-items: center;
gap: 10px;
margin-top: 20px;
padding: 12px 25px;
background: var(--gradient-gold);
color: var(--primary-dark);
text-decoration: none;
border-radius: 25px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.3s ease;
}

.direction-btn:hover {
transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.direction-btn i {
    transition: transform 0.3s ease;
}

.direction-btn:hover i {
transform: translateX(5px);
}

@media (max-width: 768px) {
.map-overlay {
    background: linear-gradient(to bottom,
        rgba(11, 79, 108, 0.9) 0%,
        rgba(11, 79, 108, 0.8) 40%,
        transparent 100%
    );
}

.location-card {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 280px;
}
}

/* Base Animation Classes */
.animate-fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.visible {
opacity: 1;
transform: translateY(0);
}

/* Stagger children animations */
.expertise-grid .expertise-card:nth-child(1) { transition-delay: 0.1s; }
.expertise-grid .expertise-card:nth-child(2) { transition-delay: 0.2s; }
.expertise-grid .expertise-card:nth-child(3) { transition-delay: 0.3s; }

.hero-features .feature:nth-child(1) { transition-delay: 0.1s; }
.hero-features .feature:nth-child(2) { transition-delay: 0.2s; }
.hero-features .feature:nth-child(3) { transition-delay: 0.3s; }
.hero-features .feature:nth-child(4) { transition-delay: 0.4s; }

/* Remove preloader styles */
.preloader {
display: none;
}

/* Before & After Image Comparison */
.before-after-slider {
position: relative;
width: 100%;
height: 400px;
border-radius: var(--border-radius);
overflow: hidden;
cursor: col-resize;
background-color: #fff;
}

.before-after-slider img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.before-after-slider .before {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 50%;
overflow: hidden;
z-index: 2;
}

.before-after-slider .after {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow: hidden;
z-index: 1;
}

.before-after-slider .handle {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
    background: var(--white);
transform: translateX(-50%);
z-index: 3;
}

.handle-line {
    position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
background: var(--white);
transform: translateX(-50%);
}

.handle-circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--white);
box-shadow: 0 2px 6px rgba(0,0,0,0.3);
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}

.handle-circle i {
font-size: 12px;
color: var(--primary);
}

.slider-labels {
position: absolute;
top: 20px;
left: 0;
right: 0;
z-index: 4;
display: flex;
justify-content: space-between;
padding: 0 20px;
pointer-events: none;
}

.slider-labels span {
background: rgba(0, 0, 0, 0.6);
color: var(--white);
padding: 8px 16px;
    border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
}

.before-after-slider.resizing .handle-circle {
background: var(--secondary);
transform: translate(-50%, -50%) scale(1.1);
}

.before-after-slider.resizing .handle-circle i {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
.before-after-slider {
    height: 300px;
}

.handle-circle {
    width: 36px;
    height: 36px;
}

.slider-labels span {
    font-size: 0.8rem;
    padding: 6px 12px;
}
}

@media (max-width: 480px) {
.before-after-slider {
    height: 250px;
}

.slider-labels {
    top: 10px;
    padding: 0 10px;
}
}

.slide-shine {
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
);
transform: translateX(-100%) rotate(45deg);
transition: all 1s ease;
pointer-events: none;
z-index: 3;
opacity: 0;
}

.before-after-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
position: relative;
overflow: hidden;
}

.before-after-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: var(--gradient-gold);
box-shadow: 0 0 20px var(--secondary);
}

.before-after-section::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 0%, rgba(219, 168, 88, 0.1) 0%, transparent 70%);
pointer-events: none;
}

.before-after-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

.before-after-header {
    text-align: center;
margin-bottom: 50px;
}

.before-after-header h2 {
font-size: 3rem;
color: var(--primary-dark);
margin-bottom: 1rem;
position: relative;
display: inline-block;
}

.before-after-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 100%;
height: 3px;
background: var(--gradient-gold);
transform: scaleX(0);
transform-origin: right;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-header.visible h2::after {
transform: scaleX(1);
transform-origin: left;
}

.before-after-header p {
font-size: 1.2rem;
color: var(--text);
max-width: 700px;
margin: 1.5rem auto;
line-height: 1.8;
}

.before-after-slider {
position: relative;
width: 100%;
height: 600px;
border-radius: 30px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
cursor: grab;
}

.before-after-slider:active {
cursor: grabbing;
}

.before-after-slider img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.before-after-slider .before {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 50%;
overflow: hidden;
z-index: 2;
border-right: 2px solid var(--white);
transition: width 0.3s ease-out;
}

.before-after-slider .after {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow: hidden;
z-index: 1;
}

.before-after-slider .handle {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
transform: translateX(-50%);
z-index: 3;
transition: background 0.3s ease;
}

.handle-line {
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 2px;
background: rgba(255, 255, 255, 0.8);
transform: translateX(-50%);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--white);
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
transition: all 0.3s ease;
}

.handle-circle i {
font-size: 14px;
color: var(--primary);
transition: all 0.3s ease;
}

.before-after-slider:hover .handle-circle {
transform: translate(-50%, -50%) scale(1.1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.before-after-slider.resizing .handle-circle {
background: var(--secondary);
transform: translate(-50%, -50%) scale(1.2);
}

.before-after-slider.resizing .handle-circle i {
color: var(--white);
transform: scale(1.2);
}

.slider-labels {
position: absolute;
top: 30px;
left: 0;
right: 0;
z-index: 4;
display: flex;
justify-content: space-between;
padding: 0 40px;
pointer-events: none;
}

.slider-labels span {
background: rgba(0, 0, 0, 0.7);
color: var(--white);
padding: 12px 24px;
border-radius: 30px;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
backdrop-filter: blur(5px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
opacity: 0;
transform: translateY(-20px);
transition: all 0.3s ease;
}

.before-after-slider:hover .slider-labels span {
opacity: 1;
transform: translateY(0);
}

.before-after-info {
margin-top: 40px;
text-align: center;
}

.before-after-info h3 {
font-size: 1.8rem;
color: var(--primary-dark);
margin-bottom: 1rem;
}

.before-after-info p {
color: var(--text);
line-height: 1.7;
max-width: 600px;
margin: 0 auto;
}

@media (max-width: 1200px) {
.before-after-slider {
    height: 500px;
}
}

@media (max-width: 992px) {
.before-after-slider {
    height: 450px;
}

.before-after-header h2 {
    font-size: 2.5rem;
}
}

@media (max-width: 768px) {
.before-after-slider {
    height: 400px;
    border-radius: 20px;
}

.handle-circle {
    width: 40px;
    height: 40px;
}

.slider-labels {
    top: 20px;
    padding: 0 20px;
}

.slider-labels span {
    padding: 8px 16px;
    font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.before-after-slider {
    height: 300px;
    border-radius: 15px;
}

.before-after-header h2 {
    font-size: 2rem;
}

.handle-circle {
    width: 36px;
    height: 36px;
}

.slider-labels span {
    padding: 6px 12px;
    font-size: 0.8rem;
}
}

/* Enhanced Language Switcher */
.language-switcher {
position: relative;
margin: 0 1rem;
z-index: 1002;
}

.lang-btn {
display: flex;
align-items: center;
gap: 0.8rem;
padding: 0.7rem 1.2rem;
background: transparent;
border: 2px solid var(--gold);
border-radius: 50px;
color: var(--text-dark);
font-weight: 500;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
background: var(--gold-gradient);
color: white;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.flag-icon {
width: 24px;
height: 18px;
object-fit: cover;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-dropdown {
position: absolute;
top: calc(100% + 0.8rem);
right: 0;
background: white;
border-radius: 15px;
padding: 0.8rem 0;
min-width: 180px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
border: 1px solid rgba(212, 175, 55, 0.1);
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-switcher:hover .lang-dropdown {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.lang-dropdown a {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 1.5rem;
color: var(--text-dark);
text-decoration: none;
transition: all 0.3s ease;
}

.lang-dropdown a:hover {
background: var(--gold-gradient);
color: white;
}

.lang-dropdown a.active {
background: rgba(212, 175, 55, 0.1);
}

/* Enhanced Appointment Button */
.appointment-btn {
display: flex;
align-items: center;
gap: 0.8rem;
padding: 0.8rem 1.8rem;
background: var(--gold-gradient);
border: none;
border-radius: 50px;
color: white;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.appointment-btn i {
font-size: 1.1rem;
transition: transform 0.3s ease;
}

.appointment-btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.appointment-btn:hover i {
transform: translateX(5px);
}

/* RTL Enhancements */
.rtl .nav-buttons {
flex-direction: row-reverse;
margin-right: auto;
margin-left: 0;
gap: 1.5rem;
}

.rtl .language-switcher {
margin: 0 0 0 1rem;
}

.rtl .lang-btn {
flex-direction: row-reverse;
font-family: 'Cairo', sans-serif;
font-weight: 600;
}

.rtl .lang-dropdown {
left: 0;
right: auto;
text-align: right;
}

.rtl .lang-dropdown a {
flex-direction: row-reverse;
font-family: 'Cairo', sans-serif;
}

.rtl .appointment-btn {
flex-direction: row-reverse;
font-family: 'Cairo', sans-serif;
font-weight: 600;
font-size: 1.1rem;
}

.rtl .appointment-btn i {
transform: scaleX(-1);
}

.rtl .appointment-btn:hover i {
transform: scaleX(-1) translateX(5px);
}

/* Mobile Enhancements */
@media screen and (max-width: 992px) {
.nav-buttons {
    gap: 1rem;
}

.language-switcher {
    margin: 0;
}

.lang-btn {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.appointment-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}

.rtl .nav-buttons {
    gap: 1rem;
}

.rtl .mobile-lang-switcher {
    width: 100%;
    margin: 1rem 0;
}

.rtl .mobile-lang-switcher .lang-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.rtl .mobile-lang-switcher .lang-dropdown {
    width: 100%;
    position: static;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.rtl .mobile-lang-switcher .lang-dropdown a {
    justify-content: center;
    padding: 1rem;
}
}

/* Mobile Menu Language Switcher */
.mobile-lang-switcher {
display: none;
width: 100%;
margin: 1rem 0;
order: 2;
}

@media screen and (max-width: 992px) {
.nav-buttons .language-switcher {
    display: none;
}

.mobile-lang-switcher {
    display: block;
}

.mobile-lang-switcher .language-switcher {
    display: block;
    width: 100%;
}

.mobile-lang-switcher .lang-btn {
    width: 100%;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
}

.mobile-lang-switcher .lang-dropdown {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
}

.mobile-lang-switcher .language-switcher.active .lang-dropdown {
    display: block;
}
}

/* Desktop/Mobile Visibility Classes */
.desktop-only {
display: block;
}

.mobile-only {
display: none;
}

/* Enhanced Mobile Menu Styles */
@media screen and (max-width: 992px) {
.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

nav .container {
    padding: 0 1.5rem;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    width: 100%;
    padding: 1rem 0;
}

.mobile-lang-switcher .language-switcher {
    width: 100%;
}

.mobile-lang-switcher .lang-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.mobile-lang-switcher .lang-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0.5rem;
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}

.mobile-lang-switcher .language-switcher.active .lang-dropdown {
    display: block;
}

.mobile-lang-switcher .lang-dropdown a {
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.05);
}

.mobile-lang-switcher .lang-dropdown a:hover,
.mobile-lang-switcher .lang-dropdown a.active {
    background: var(--gold-gradient);
    color: white;
}

/* RTL Mobile Menu */
.rtl .nav-links {
    right: auto;
    left: -100%;
    text-align: right;
}

.rtl .nav-links.active {
    right: auto;
    left: 0;
}

.rtl .mobile-lang-switcher .lang-btn {
    justify-content: flex-end;
}

.rtl .mobile-lang-switcher .lang-dropdown a {
    justify-content: flex-end;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;  /* Hidden by default on desktop */
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: transparent;  /* Removed gold gradient */
    color: var(--dark) !important;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1010;
}

.mobile-menu-btn i {
    color: var(--dark) !important;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    display: block !important;
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn.active {
    background: transparent;  /* Removed gold dark */
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
    color: var(--gold) !important;  /* Change color on active state */
}

@media screen and (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;  /* Force display on mobile */
        order: 3;
        margin-left: 1rem;
    }

    .rtl .mobile-menu-btn {
        margin-left: 0;
        margin-right: 1rem;
        order: 3;
    }

    .nav-buttons {
        order: 2;
    }

    .logo {
        order: 1;
    }
}

@media screen and (max-width: 576px) {
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        margin-left: 0.5rem;
    }

    .mobile-menu-btn i {
        font-size: 1.2rem;
    }
}
}

/* Additional Mobile Styles */
@media screen and (max-width: 576px) {
.nav-links {
    width: 100%;
    max-width: none;
}

.mobile-lang-switcher .lang-btn,
.mobile-lang-switcher .lang-dropdown a {
    font-size: 1rem;
    padding: 0.8rem;
}
}

/* RTL Certificates Slider Fixes */
.rtl .certificates-slider {
direction: ltr; /* Keep slider direction LTR for proper functionality */
}

.rtl .certificates-slider .swiper-button-next {
transform: rotate(180deg);
}

.rtl .certificates-slider .swiper-button-prev {
transform: rotate(180deg);
}

.rtl .certificate-item {
direction: rtl; /* Keep content direction RTL */
}

.rtl .certificates-showcase h3 {
text-align: right;
}

.contact-badge {
background-color: var(--gold) !important;
}

.contact-info2 {
background-color: var(--gold) !important;
}

.contact-info {
background: var(--gradient-dark) !important;
padding: 60px;
border-radius: 30px;
box-shadow: var(--shadow-lg);
position: relative;
overflow: hidden;
transition: transform 0.3s ease;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

.contact-info::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--gradient-gold);
box-shadow: 0 0 20px var(--secondary);
}

.contact-info h2 {
color: var(--white);
font-size: 3.5rem;
margin-bottom: 2rem;
position: relative;
display: inline-block;
}

.contact-info h2::after {
content: '';
position: absolute;
bottom: -15px;
left: 0;
width: 100px;
height: 4px;
background: var(--gradient-gold);
border-radius: 2px;
transition: width 0.3s ease;
}

.contact-info:hover h2::after {
width: 100%;
}

.contact-info .lead {
color: var(--white);
    opacity: 0.9;
margin-bottom: 4rem;
font-size: 1.4rem;
line-height: 1.8;
max-width: 800px;
}

.info-items-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
width: 100%;
}

.info-item {
display: flex;
align-items: center;
gap: 25px;
padding: 35px;
background: rgba(255, 255, 255, 0.05);
border-radius: 20px;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
height: 100%;
}

.info-item:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.1);
border-color: var(--secondary);
}

.info-item i {
width: 80px;
height: 80px;
min-width: 80px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gradient-gold);
color: var(--white);
font-size: 2rem;
border-radius: 20px;
box-shadow: 0 5px 15px rgba(219, 168, 88, 0.3);
transition: all 0.3s ease;
}

.info-item:hover i {
transform: scale(1.1) rotate(5deg);
}

.info-item-content {
flex: 1;
}

.info-item h4 {
color: var(--secondary);
font-size: 1.5rem;
margin-bottom: 10px;
font-weight: 600;
}

.info-item p, 
.info-item a {
color: var(--white);
opacity: 0.9;
font-size: 1.2rem;
line-height: 1.6;
transition: all 0.3s ease;
}

.info-item a:hover {
color: var(--secondary);
opacity: 1;
}

@media (max-width: 1200px) {
.contact-info {
    padding: 50px;
}

.info-item {
    padding: 30px;
}

.info-item i {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 1.8rem;
}
}

@media (max-width: 992px) {
.contact-info {
    padding: 40px;
    text-align: center;
}

.contact-info h2 {
    font-size: 3rem;
}

.contact-info h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-info .lead {
    font-size: 1.3rem;
    margin: 0 auto 3rem;
}

.info-items-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 25px;
}

.info-item {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
    gap: 20px;
}

.info-item i {
    width: 90px;
    height: 90px;
    min-width: 90px;
    font-size: 2.2rem;
    margin: 0 auto;
}
}

@media (max-width: 768px) {
.contact-info {
    padding: 35px 25px;
    border-radius: 25px;
}

.contact-info h2 {
    font-size: 2.5rem;
}

.contact-info .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.info-items-container {
    gap: 20px;
}

.info-item {
    padding: 30px 20px;
}

.info-item i {
    width: 80px;
    height: 80px;
    min-width: 80px;
    font-size: 2rem;
}

.info-item h4 {
    font-size: 1.4rem;
}

.info-item p,
.info-item a {
    font-size: 1.1rem;
}
}

@media (max-width: 480px) {
.contact-info {
    padding: 30px 20px;
    border-radius: 20px;
}

.contact-info h2 {
    font-size: 2.2rem;
}

.contact-info .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-items-container {
    gap: 15px;
}

.info-item {
    padding: 25px 20px;
}

.info-item i {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 1.8rem;
}

.info-item h4 {
    font-size: 1.3rem;
}

.info-item p,
.info-item a {
    font-size: 1rem;
}
}

/* Add floating animation for info items */
@keyframes floatItem {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-5px);
}
}

.info-item {
animation: floatItem 3s ease-in-out infinite;
animation-delay: calc(var(--item-index, 0) * 0.2s);
}

/* Enhanced Mobile Contact Section */
@media (max-width: 992px) {
.contact-section {
    padding: 60px 0;
    background: linear-gradient(145deg, var(--primary-dark) 0%, #1a1a2e 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    text-align: center;
    padding: 0 20px;
}

.contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
}

.map-container {
    min-height: 300px;
    order: -1;
    margin: 0 15px;
    border-radius: 20px;
    transform: translateY(-20px);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-card {
    padding: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.2s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.6s; }
.contact-card:nth-child(4) { animation-delay: 0.8s; }

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 15px;
}

.card-icon i {
    font-size: 1.5rem;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: left;
}

.contact-links {
    align-items: flex-start;
}

.contact-links a {
    justify-content: flex-start;
    font-size: 1rem;
    padding: 8px 0;
}

.hours-grid {
    text-align: left;
}

.hours-item {
    padding: 10px 0;
}

.social-links {
    justify-content: flex-start;
    margin-top: 15px;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

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

/* Add touch-friendly hover states */
.contact-card:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.07);
}

.social-link:active {
    transform: scale(0.9);
}

.contact-links a:active {
    transform: translateX(5px);
    color: var(--secondary);
}
}

@media (max-width: 768px) {
.contact-section {
    padding: 40px 0;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header .lead {
    font-size: 1.1rem;
    padding: 0 20px;
}

.map-container {
    min-height: 250px;
    margin: 0 10px;
}

.contact-info-cards {
    padding: 0 10px;
}

.contact-card {
    padding: 20px;
    border-radius: 15px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.card-icon i {
    font-size: 1.3rem;
}

.card-content h4 {
    font-size: 1.2rem;
}

/* Add pull-to-refresh style animation */
.contact-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card.pull {
    transform: scale(0.95);
}

/* Add smooth scroll snap */
.contact-info-cards {
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

.contact-card {
    scroll-snap-align: start;
}

/* Enhanced touch feedback */
.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
}

.contact-card:active::after {
    opacity: 1;
}
}

@media (max-width: 480px) {
.contact-section {
    padding: 30px 0;
}

.section-header h2 {
    font-size: 2.2rem;
}

.section-header .lead {
    font-size: 1rem;
    line-height: 1.6;
}

.map-container {
    min-height: 200px;
    border-radius: 15px;
}

.contact-card {
    padding: 18px;
    gap: 15px;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.card-icon i {
    font-size: 1.2rem;
}

.card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-links a {
    font-size: 0.95rem;
}

.social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

/* Add loading shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.contact-card.loading {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.05) 37%,
        rgba(255, 255, 255, 0.03) 63%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Add haptic feedback styles */
.contact-card:active {
    transform: scale(0.97);
}

.social-link:active {
    transform: scale(0.9) rotate(5deg);
}

/* Optimize touch targets */
.contact-links a {
    padding: 10px 0;
    margin: -5px 0;
}

.social-links {
    margin: -5px;
    padding: 5px;
}

.social-link {
    margin: 5px;
}
}

/* Add native-like momentum scrolling */
.contact-info-cards {
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
}

/* Add pull-to-refresh animation */
@keyframes pullRefresh {
0% {
    transform: translateY(0) scale(1);
}
50% {
    transform: translateY(10px) scale(0.97);
}
100% {
    transform: translateY(0) scale(1);
}
}

.contact-card.pulling {
animation: pullRefresh 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add mobile gesture hints */
.contact-card::before {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 4px;
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
opacity: 0;
transition: opacity 0.3s ease;
}

.contact-card:last-child::before {
display: none;
}

.contact-info-cards:hover .contact-card::before {
opacity: 1;
}

/* Enhanced loading states */
.contact-section.loading .contact-card {
animation: none;
background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.05) 37%,
    rgba(255, 255, 255, 0.03) 63%
);
background-size: 200% 100%;
animation: shimmer 1.5s infinite;
}

/* Add mobile-first animations */
@media (prefers-reduced-motion: no-preference) {
.contact-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease,
                box-shadow 0.3s ease;
}

.card-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-links a {
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-link {
    transition: transform 0.2s ease, background-color 0.2s ease;
}
}

/* Add mobile gesture animations */
@media (hover: none) {
.contact-card:active {
    transform: scale(0.98);
}

.contact-links a:active {
    transform: translateX(5px);
}

.social-link:active {
    transform: scale(0.9) rotate(5deg);
}
}