/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}



/* ===== HTML5 DISPLAY ===== */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}


/* Add this to your CSS file */
html, body {
    height: auto;
    min-height: 100vh;
    
}

/* Or try this alternative if above doesn't work */
body {
     height: auto;
    min-height: 100vh;
    /* min-height: 100vh; */
}

/* ===== BODY ===== */
body {
    font-family: 'Cairo', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #c0843e;
    z-index: 9999;
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid #c0843e;
    color: #0d2963;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    background: white;
    padding: 5px;
    border: 2px solid #c0843e;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 1.3;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 700;
}

.logo-text span {
    font-size: 14px;
    color: #e6b560;
    font-weight: 800;
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.menu-btn-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 5px auto;
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ===== NAV LINKS ===== */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: #e6b560;
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

.nav-link.active {
    color: #c0843e;
    background-color: rgba(192, 132, 62, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 20px;
    height: 2px;
    background-color: #c0843e;
    border-radius: 1px;
}

/* ===== CALL BUTTON ===== */
.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: #ffffff;
    padding: 0px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 30px;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(192, 132, 62, 0.2);
    border: 1px solid black;
}

.call-btn:hover,
.call-btn:focus {
    background: linear-gradient(135deg, #e6b560 0%, #c0843e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(192, 132, 62, 0.3);
    outline: none;
}

.call-icon {
    font-size: 18px;
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== MAIN CONTENT ===== */
#main-content {
    margin-top: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1201px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .call-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .logo-text strong {
        font-size: 16px;
    }
    
    .logo-text span {
        font-size: 13px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .call-btn {
        margin-top: 30px;
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 17px;
    }
    
    #main-content {
        margin-top: 70px;
    }
    
    /* Animate hamburger to X */
    .menu-btn.active .menu-btn-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-btn.active .menu-btn-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-btn.active .menu-btn-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text strong {
        font-size: 15px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .nav-menu {
        width: 85%;
    }
}

/* ===== ACCESSIBILITY ===== */

/* Focus styles */
:focus-visible {
    outline: 3px solid #c0843e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .call-icon {
        animation: none;
    }
}

/* High contrast */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 3px solid #000000;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        outline: 2px solid #000000;
    }
}

/* Print styles */
@media print {
    .navbar {
        position: static !important;
        background: #ffffff !important;
        border-bottom: 2px solid #000000;
    }
    
    .logo-text strong {
        color: #000000 !important;
    }
    
    .logo-text span {
        color: #333333 !important;
    }
    
    .nav-link,
    .call-btn {
        color: #000000 !important;
        background: none !important;
        text-decoration: underline;
    }
    
    .menu-btn {
        display: none;
    }
    
    .nav-menu {
        position: static;
        display: flex;
        width: auto;
        height: auto;
        box-shadow: none;
    }
}
/* Core hero */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
}

/* media / LCP image */
.hero-media { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* overlay */
.hero-image-overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.55)); }

/* content above overlay */
/* Center the hero content horizontally and vertically inside the hero section */
.hero-section {
  display: flex;                 /* already set, but ensure this */
  align-items: center;           /* vertical centering */
  justify-content: center;       /* horizontal centering of the hero-main block */
  min-height: 100vh;             /* make hero occupy full viewport height — change to 55vh if you prefer shorter hero */
  padding: 0;
}

/* Ensure the hero-main container is centered and its content stacked & centered */
.hero-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;                     /* keep above image overlay */
}

.hero-main .container {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1100px;
  width: 100%;                    /* allow centering with max-width */
  margin: 0 auto;                 /* horizontal centering fallback */
  padding: 3rem 1.25rem;
  text-align: center;             /* center text and CTAs */
  direction: rtl;                 /* RTL flow for Arabic */
  display: flex;
  flex-direction: column;
  align-items: center;            /* center children horizontally */
  justify-content: center;        /* center children vertically within container */
  gap: 0.75rem;                   /* consistent spacing between elements */
}

/* title */
.hero-title { font-size: 2.2rem; line-height: 1.1; margin: 0 0 1rem; }
.title-line-1 { display: block; font-weight: 700; }
.title-line-2 { display: block; opacity: 0.95; font-weight: 400; margin-top: .25rem; }

/* badge */
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,0.08);
  padding: .45rem .75rem; border-radius: 999px; margin-bottom: 1rem; }

/* CTA layout */
.hero-cta {
  display: flex;
  justify-content: center; /* center the buttons */
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* CTA styles */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  border-radius: .6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform .12s ease, box-shadow .12s ease;
  
}
.cta-primary { background: linear-gradient(135deg, #eb8006 0%, #fca104 100%) }
.cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,107,43,.2); }
.cta-secondary { background: rgba(255,255,255,0.12); }

/* CTA badge */
.cta-badge { background: rgba(255,255,255,0.12); padding: .2rem .45rem; border-radius: .35rem; font-size:.85rem; }

/* Floating call button for mobiles */
.call-floating {
  position: fixed;
  bottom: 1rem;
  left: 1rem; /* for RTL prefer left; change to right:1rem if LTR */
  z-index: 9999;
  background: #ff6b2b;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  text-decoration: none;
  font-weight: 700;
  display: none;
}
@media (max-width: 768px) {
  .call-floating { display: inline-flex; align-items:center; gap:.5rem; }
}

/* responsive tweaks */
@media (max-width: 992px) {
  .hero-section { min-height: 48vh; }
  .hero-title { font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .hero-section { min-height: 40vh; }
  .hero-title { font-size: 1.6rem; }
  .hero-main .container { padding: 2rem .75rem; text-align: center; }
}/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, #dc2626, #b91c1c);
    padding: 15px 0;
    animation: pulseEmergency 2s infinite;
}

@keyframes pulseEmergency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 24px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.emergency-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.emergency-text strong {
    font-size: 18px;
    font-weight: 800;
}

.emergency-text span {
    font-size: 14px;
    opacity: 0.9;
}

.emergency-btn {
    background: #ffffff;
    color: #dc2626;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Main Hero */
.hero-main {
    padding: 60px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line-1 {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
}

.title-line-11 {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: #0d2963;
    margin-bottom: 10px;
}
.title-line-2 {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffa200;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #059669;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: #ffffff;
    padding: 0px 15px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(192, 132, 62, 0.3);
    position: relative;
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 132, 62, 0.4);
}

.cta-badge {
    background: #dc2626;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    position: absolute;
    top: -10px;
    left: -10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0px 15px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Features */
.hero-features {
    max-width: 600px;
    margin: 0 auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: right;
}

.feature-icon {
    color: #e6b560;
    font-size: 20px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
        /* padding: 18px; */
        font-size: 1rem;
    }
    
    .feature {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .emergency-btn {
        width: 100%;
        justify-content: center;
    }
    
    .title-line-1 {
        font-size: 1.6rem;
    }
    
    .title-line-2 {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 14px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Container */
.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(192, 132, 62, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Text Content */
.about-text h2 {
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text h2 .highlight {
    display: block;
    color: #0d2963;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-text h2 span:last-child {
    display: block;
    color: #c0843e;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-text strong {
    color: #0d2963;
}

/* Features List */
.about-features {
    margin: 35px 0;
}

/* .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border-right: 4px solid #c0843e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
} */

.feature:hover {
    transform: translateX(-5px);
}

.feature .icon {
    color: #059669;
    font-size: 1.2rem;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(13, 41, 99, 0.2);
}

.about-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 41, 99, 0.3);
}

.cta-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 .highlight {
        font-size: 1.8rem;
    }
    
    .about-text h2 span:last-child {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
        text-align: center;
    }
    
    .feature {
        text-align: right;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .experience-badge span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-text h2 .highlight {
        font-size: 1.5rem;
    }
    
    .about-text h2 span:last-child {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-cta {
        width: 100%;
        justify-content: center;
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .feature {
        padding: 12px;
    }
    
    .experience-badge {
        width: 70px;
        height: 70px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    color: #0d2963;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    color: #c0843e;
    font-size: 1.3rem;
    font-weight: 600;
}

.section-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.section-description2 {
    color: #0d2963;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #c0843e;
}

/* Service Image */
.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #0d2963, #172b82);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-text {
    display: block;
}

/* Service Content */
.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 15px;
    color: #92400e;
}

.service-title {
    color: #0d2963;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-description {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    height: 80px;
    overflow: hidden;
}

/* Service Keywords */
.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.service-keywords span {
    background: #e2e8f0;
    color: #475569;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card:hover .service-keywords span {
    background: #0d2963;
    color: #ffffff;
}

/* Service CTA */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c0843e, #e6b560);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    border: 2px solid transparent;
}

.service-cta:hover {
    background: #0d2963;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 41, 99, 0.2);
    border-color: #c0843e;
}

.cta-icon {
    font-size: 1.1rem;
    animation: phone-shake 2s infinite;
}

@keyframes phone-shake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Bottom CTA */
.services-cta {
    background: linear-gradient(135deg, #0d2963, #172b82);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(13, 41, 99, 0.15);
}

.cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content h3 .highlight {
    color: #e6b560;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, #c0843e, #e6b560);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(192, 132, 62, 0.3);
}

.primary-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 132, 62, 0.4);
    background: linear-gradient(135deg, #e6b560, #c0843e);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: #e6b560;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .service-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        height: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        font-size: 2rem;
        padding: 12px;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Image Loading Animation */
.service-image img {
    opacity: 0;
    animation: imageLoad 0.5s ease forwards;
}

@keyframes imageLoad {
    to {
        opacity: 1;
    }
}
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    margin-bottom: 15px;
}

.title-main2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.3rem;
    color: #e6b560;
    font-weight: 600;
}

.section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info */
.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-right: 4px solid #e6b560;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Contact CTA */
.cta-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-header {
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    padding: 30px;
    text-align: center;
}

.cta-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 15px;
}

.cta-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.cta-primary.cta-text{
    font-size: 45px;
}

.cta-primary.cta-text{
    font-size: 45px;
}

.cta-content {
    padding: 30px;
}

.cta-description {
    color: #1f2937;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-method.phone {
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: #ffffff;
}

.contact-method.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-method.phone:hover {
    background: linear-gradient(135deg, #172b82 0%, #0d2963 100%);
}

.contact-method.whatsapp:hover {
    background: #128C7E;
}

.method-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.method-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.method-value {
    font-size: 1.4rem;
    font-weight: 800;
}

.method-arrow {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.contact-method:hover .method-arrow {
    transform: translateX(-5px);
}

/* Contact Hours */
.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 10px;
    margin-bottom: 25px;
}

.hours-icon {
    color: #c0843e;
    font-size: 1.5rem;
}

.hours-text {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Note */
.contact-note {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-right: 4px solid #e6b560;
}

.contact-note p {
    color: #1f2937;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        gap: 30px;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        min-width: 50px;
        height: 50px;
    }
    
    .feature-text strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-features {
        order: 2;
    }
    
    .contact-cta {
        order: 1;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .method-value {
        font-size: 1.3rem;
    }
    
    .contact-hours {
        padding: 12px;
    }
    
    .hours-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        min-width: 40px;
        height: 40px;
    }
    
    .feature-text strong {
        font-size: 1rem;
    }
    
    .feature-text span {
        font-size: 0.85rem;
    }
    
    .cta-header {
        padding: 20px;
    }
    
    .cta-icon {
        font-size: 2.5rem;
    }
    
    .cta-content {
        padding: 20px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .method-icon {
        font-size: 1.8rem;
        min-width: 40px;
    }
    
    .method-value {
        font-size: 1.2rem;
    }
    
    .contact-note p {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section {
    animation: fadeInUp 1s ease;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

/* Print Styles */
@media print {
    .contact-section {
        background: #ffffff !important;
        color: #000000 !important;
        border: 2px solid #000000;
    }
    
    .title-main {
        color: #000000 !important;
    }
    
    .title-sub {
        color: #666666 !important;
    }
    
    .cta-card {
        box-shadow: none !important;
        border: 1px solid #000000 !important;
    }
    
    .contact-method {
        border: 1px solid #000000 !important;
        color: #000000 !important;
        background: #ffffff !important;
    }
}
/* ===== UPDATED FOOTER - NAVY BLUE & GOLD THEME ===== */
.footer-section {
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: #ffffff;
    padding: 70px 0 25px;
    margin-top: 80px;
    position: relative;
    border-top: 5px solid #c0843e;
    direction: rtl;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c0843e 0%, #e6b560 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    border: 2px solid #e6b560;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text strong {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 800;
}

.footer-logo .logo-text span {
    font-size: 0.95rem;
    color: #e6b560;
    font-weight: 800;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    text-align: justify;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    color: #e6b560;
    font-size: 20px;
    min-width: 24px;
}

.contact-text {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-text:hover {
    color: #e6b560;
    transform: translateX(-5px);
}

.footer-title {
    font-size: 1.4rem;
    color: #e6b560;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    font-weight: 700;
}

.footer-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #c0843e;
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 6px 0;
    font-size: 1rem;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e6b560;
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(-8px);
}

.footer-menu a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(192, 132, 62, 0.2);
    transform: translateX(-8px);
    border-color: #c0843e;
}

.social-icon {
    font-size: 22px;
    width: 26px;
    text-align: center;
}

.social-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-cta {
    background: rgba(192, 132, 62, 0.15);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(192, 132, 62, 0.3);
    margin-top: 20px;
    text-align: center;
}

.footer-cta p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(192, 132, 62, 0.3);
}

.footer-call-btn:hover {
    background: linear-gradient(135deg, #e6b560 0%, #c0843e 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(192, 132, 62, 0.4);
}

.call-icon {
    font-size: 1.3rem;
    animation: phone-pulse 2s infinite;
}

@keyframes phone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.developer-credit p {
    color: #ffffff;
    font-size: 0.95rem;
}

.developer-credit strong {
    color: #e6b560;
}

/* ===== FOOTER RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-cta {
        padding: 20px;
    }
    
    .footer-call-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 20px;
        margin-top: 60px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .social-link {
        padding: 12px 15px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-cta {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-logo .logo-img {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .footer-logo .logo-text strong {
        font-size: 1.1rem;
    }
    
    .footer-logo .logo-text span {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-menu a {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 10px 12px;
    }
    
    .social-icon {
        font-size: 20px;
    }
    
    .social-text {
        font-size: 0.85rem;
    }
    
    .footer-cta p {
        font-size: 1.1rem;
    }
    
    .footer-call-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .copyright p,
    .developer-credit p {
        font-size: 0.85rem;
    }
}

/* ===== STICKY WHATSAPP & CALL BUTTONS ===== */
.sticky-buttons {
    position: fixed;
    left: 25px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    direction: ltr;
}

.whatsapp-button,
.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 3px solid white;
    animation: floatButton 3s ease-in-out infinite;
}

.whatsapp-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-button {
    background: linear-gradient(135deg, #0d2963 0%, #c0843e 100%);
    animation-delay: 0.5s;
}

@keyframes floatButton {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-12px); 
    }
}

.button-icon {
    font-size: 26px;
    color: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.button-text {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 41, 99, 0.95);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
    border: 2px solid #c0843e;
}

.button-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-left: 10px solid #0d2963;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.whatsapp-button .button-text {
    background: rgba(37, 211, 102, 0.95);
    border-color: #25D366;
}

.whatsapp-button .button-text::after {
    border-left-color: #25D366;
}

.whatsapp-button:hover,
.call-button:hover {
    transform: scale(1.18) rotate(8deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.whatsapp-button:hover .button-text,
.call-button:hover .button-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.call-button:hover {
    background: linear-gradient(135deg, #c0843e 0%, #0d2963 100%);
}

/* Pulse animation for call button */
.call-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulseRing 2s infinite;
    z-index: 1;
}

@keyframes pulseRing {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.6); 
        opacity: 0; 
    }
}

/* ===== STICKY BUTTONS RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 992px) {
    .sticky-buttons {
        left: 20px;
        bottom: 25px;
        gap: 18px;
    }
    
    .whatsapp-button,
    .call-button {
        width: 60px;
        height: 60px;
    }
    
    .button-icon {
        font-size: 24px;
    }
    
    .button-text {
        font-size: 14px;
        padding: 9px 16px;
        right: 70px;
    }
    
    .whatsapp-button:hover .button-text,
    .call-button:hover .button-text {
        right: 75px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-buttons {
        left: 18px;
        bottom: 22px;
        gap: 16px;
    }
    
    .whatsapp-button,
    .call-button {
        width: 55px;
        height: 55px;
        border-width: 2.5px;
    }
    
    .button-icon {
        font-size: 22px;
    }
    
    .button-text {
        font-size: 13px;
        padding: 8px 14px;
        right: 65px;
    }
    
    .whatsapp-button:hover .button-text,
    .call-button:hover .button-text {
        right: 70px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sticky-buttons {
        left: 15px;
        bottom: 20px;
        gap: 14px;
    }
    
    .whatsapp-button,
    .call-button {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .button-icon {
        font-size: 20px;
    }
    
    /* Show text by default on very small screens */
    .button-text {
        opacity: 1;
        visibility: visible;
        right: 60px;
        background: rgba(13, 41, 99, 0.9);
        font-size: 12px;
        padding: 7px 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .whatsapp-button .button-text {
        background: rgba(37, 211, 102, 0.9);
    }
    
    .whatsapp-button:hover .button-text,
    .call-button:hover .button-text {
        right: 60px;
    }
    
    /* Reduce animation on small devices */
    @media (max-width: 360px) {
        .whatsapp-button,
        .call-button {
            animation: none;
        }
        
        .call-button::after {
            animation: none;
        }
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .sticky-buttons {
        bottom: 18px;
        gap: 12px;
    }
    
    .whatsapp-button,
    .call-button {
        width: 48px;
        height: 48px;
    }
    
    .button-icon {
        font-size: 18px;
    }
    
    .button-text {
        font-size: 11px;
        padding: 6px 10px;
        right: 55px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-button,
    .call-button {
        animation: none !important;
    }
    
    .call-button::after {
        animation: none !important;
    }
    
    .whatsapp-button:hover,
    .call-button:hover {
        transform: scale(1.1);
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    direction: rtl;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    margin-bottom: 20px;
}

/* .title-line-1 {
    display: block;
    color: #0d2963;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
} */

/* .title-line-2 {
    display: block;
    color: #c0843e;
    font-size: 1.3rem;
    font-weight: 600;
} */

.faq-description {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.seo-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.seo-badge {
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #c0843e;
}

/* FAQ Grid */
.faq-grid {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c0843e;
    box-shadow: 0 15px 40px rgba(192, 132, 62, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    color: #0d2963;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.question-icon {
    font-size: 1.5rem;
    color: #c0843e;
    min-width: 40px;
    text-align: center;
}

.question-text {
    flex: 1;
    text-align: right;
    line-height: 1.5;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #0d2963;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    color: #c0843e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    border-top: 1px solid #e2e8f0;
}

.answer-content {
    padding: 30px;
    color: #374151;
    line-height: 1.8;
}

.answer-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.answer-content ul, .answer-content ol {
    margin-right: 20px;
    margin-bottom: 20px;
}

.answer-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.seo-highlight {
    background: #f0f9ff;
    border-right: 4px solid #0d2963;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #1e40af;
}

/* Price Table */
.price-table {
    background: white;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    margin: 20px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.highlight {
    background: #fef3c7;
    font-weight: 700;
    color: #92400e;
}

.faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.faq-cta:hover {
    background: linear-gradient(135deg, #172b82 0%, #0d2963 100%);
    transform: translateY(-2px);
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

.area-group h4 {
    color: #0d2963;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.area-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #bae6fd;
}

/* Guarantee Cards */
.guarantee-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.guarantee-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: #c0843e;
    transform: translateY(-5px);
}

.guarantee-icon {
    font-size: 2rem;
    color: #c0843e;
}

.guarantee-content h5 {
    color: #0d2963;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.guarantee-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Experience Timeline */
.experience-timeline {
    margin: 25px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-right: 4px solid #c0843e;
}

.timeline-year {
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
}

.timeline-content h5 {
    color: #0d2963;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.expertise-item {
    background: #f3f4f6;
    color: #374151;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #0d2963;
    color: white;
    border-color: #0d2963;
}

/* Process Steps */
.process-steps {
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #c0843e;
    transform: translateX(-10px);
}

.step-number {
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h5 {
    color: #0d2963;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #0d2963 0%, #172b82 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.cta-box p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    color: white;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #e6b560 0%, #c0843e 100%);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* FAQ Footer CTA */
.faq-cta-section {
    background: linear-gradient(135deg, #c0843e 0%, #e6b560 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(192, 132, 62, 0.3);
}

.faq-cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta-section h3 .highlight {
    color: #0d2963;
}

.faq-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-info {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #0d2963;
    padding: 20px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text span {
    font-size: 0.9rem;
    color: #64748b;
}

.phone-text strong {
    font-size: 1.5rem;
    color: #0d2963;
}

.availability {
    color: white;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .title-line-1 {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .title-line-1 {
        font-size: 1.8rem;
    }
    
    .faq-description {
        font-size: 1rem;
    }
    
    .seo-badges {
        gap: 10px;
    }
    
    .seo-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .faq-cta-section {
        padding: 40px 30px;
    }
    
    .faq-cta-section h3 {
        font-size: 1.6rem;
    }
    
    .phone-cta {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .phone-text strong {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .title-line-1 {
        font-size: 1.5rem;
    }
    
    .title-line-2 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 18px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .question-icon {
        min-width: 30px;
        font-size: 1.2rem;
    }
    
    .areas-grid,
    .guarantee-cards {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        width: 100%;
    }
    
    .faq-cta-section {
        padding: 30px 20px;
    }
    
    .faq-cta-section h3 {
        font-size: 1.4rem;
    }
    
    .phone-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility */
.faq-question:focus {
    outline: 3px solid #c0843e;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .guarantee-card,
    .step,
    .phone-cta,
    .cta-btn {
        transition: none;
    }
}