/* CSS Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Top */
.header-top {
    background-color: #f5f5f5;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-right a {
    color: #333;
    text-decoration: none;
    margin-left: 10px;
}

.header-top-right a:hover {
    color: #dd3333;
}

/* Header Main */
.header-main {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.navigation {
    flex-grow: 1;
    margin: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.nav-menu li {
    position: relative;
    margin: 0 10px;
    white-space: nowrap;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 5px;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #549076;
}

/* Dropdown */
.has-dropdown .dropdown {
    position: absolute;
    top: 40px;
    left: 0;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding-left: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

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

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
    background-color: #f8f8f8;
}

/* Header Contact */
.contact-btn {
    background-color: #dd3333;
    color: white !important;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: #c02828;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.lang-current {
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.lang-current img {
    width: 18px;
    height: auto;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    padding-left: 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

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

.lang-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.lang-dropdown img {
    width: 18px;
    margin-right: 8px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #000;
}

/* Hero Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-nav svg {
    color: white;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Tablet improvements for footer-cta */
@media (max-width: 1024px) and (min-width: 769px) {
    .cta-features {
        gap: 15px;
        justify-content: center;
    }
    
    .cta-features .feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-buttons {
        margin-top: 25px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 200px;
        max-width: 280px;
        width: 100%;
    }
    
    .btn i {
        font-size: 15px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.feature i {
    margin-right: 8px;
    color: #549076;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Enhanced Buttons with Modern UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.1);
}

.btn-primary {
    background: linear-gradient(135deg, #ba0000 0%, #d63232 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(186, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(186, 0, 0, 0.4);
    background: linear-gradient(135deg, #d63232 0%, #ba0000 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-green {
    background-color: #549076;
    color: white;
}

.btn-green:hover {
    background-color: #467a63;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    text-align: center;
}

.section-header h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Service Icons */
.service-icons {
    padding: 60px 0;
}

.service-icon-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #549076, #1b7e7b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-icon-box:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #549076, #1b7e7b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #549076;
    animation: pulse 2s infinite;
}

.service-icon-box:hover .icon-wrapper {
    transform: rotateY(180deg);
}

.icon-wrapper i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.service-icon-box:hover .icon-wrapper i {
    transform: rotateY(-180deg);
}

.service-icon-box h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-icon-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-icon-box {
        margin-bottom: 30px;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
    
    .service-icon-box h4 {
        font-size: 18px;
    }
}

/* Service Cards */
.service-cards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.service-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23549076" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.service-cards-section .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.service-cards-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #549076, #467a63);
    border-radius: 2px;
}

.service-cards-section .section-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(84, 144, 118, 0.1);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.03) 0%, rgba(70, 122, 99, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(84, 144, 118, 0.2);
    border-color: rgba(84, 144, 118, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.service-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.8), rgba(70, 122, 99, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.image-overlay i {
    font-size: 48px;
    color: white;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .image-overlay {
    opacity: 1;
}

.service-card:hover .image-overlay i {
    transform: scale(1) rotate(0deg);
}

.card-content {
    padding: 35px 30px;
    text-align: center;
    position: relative;
}

.card-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2c3e50;
    transition: color 0.3s ease;
    position: relative;
}

.service-card:hover .card-content h3 {
    color: #549076;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .card-content p {
    color: #5a6c7d;
}

.card-content .btn-green {
    background: linear-gradient(135deg, #549076, #467a63);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(84, 144, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.card-content .btn-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .btn-green::before {
    left: 100%;
}

.card-content .btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(84, 144, 118, 0.4);
    background: linear-gradient(135deg, #467a63, #3d6b56);
}

/* Service Cards Responsive Layout */
.service-cards-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-cards-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: relative;
}

/* Swiper Navigation Buttons */
.service-cards-swiper .swiper-button-next,
.service-cards-swiper .swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: 0 !important;
    color: #549076 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(84, 144, 118, 0.3) !important;
    border: 3px solid #549076 !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
    user-select: none !important;
    touch-action: manipulation !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.service-cards-swiper .swiper-button-next:hover,
.service-cards-swiper .swiper-button-prev:hover,
.service-cards-swiper .swiper-button-next:active,
.service-cards-swiper .swiper-button-prev:active {
    background: #549076 !important;
    color: white !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 8px 25px rgba(84, 144, 118, 0.5) !important;
    border-color: #467a63 !important;
}

.service-cards-swiper .swiper-button-next::after,
.service-cards-swiper .swiper-button-prev::after {
    content: '' !important;
    display: none !important;
}

/* Custom FontAwesome Icons */
.service-cards-swiper .swiper-button-next::before {
    content: '\f105' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: inherit !important;
    display: block !important;
}

.service-cards-swiper .swiper-button-prev::before {
    content: '\f104' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: inherit !important;
    display: block !important;
}

.service-cards-swiper .swiper-button-next {
    right: 10px !important;
}

.service-cards-swiper .swiper-button-prev {
    left: 10px !important;
}

.service-cards-swiper .swiper-button-disabled {
    opacity: 0.5 !important;
    cursor: default !important;
    pointer-events: auto !important;
}

.service-cards-swiper .swiper-button-hidden {
    opacity: 0 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Swiper Pagination */
.service-cards-swiper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-top: 30px !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
}

.service-cards-swiper .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(84, 144, 118, 0.4) !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    display: inline-block !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
}

.service-cards-swiper .swiper-pagination-bullet-active {
    background: #549076 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 3px 10px rgba(84, 144, 118, 0.4) !important;
    border-color: rgba(84, 144, 118, 0.2) !important;
}

.service-cards-swiper .swiper-pagination-bullet:hover {
    background: rgba(84, 144, 118, 0.7) !important;
    transform: scale(1.15) !important;
    border-color: rgba(84, 144, 118, 0.3) !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .service-cards-section {
        padding: 60px 0;
    }
    
    .service-cards-section .section-header h2 {
        font-size: 36px;
    }
    
    /* Hide desktop grid, show mobile swiper */
    .service-cards-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .service-cards-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .card-image {
        height: 220px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    /* Swiper navigation adjustments for mobile */
    .service-cards-swiper {
        padding: 20px 40px 60px;
    }
    
    .service-cards-swiper .swiper-button-next,
    .service-cards-swiper .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin-top: 0 !important;
    }
    
    .service-cards-swiper .swiper-button-next::before,
    .service-cards-swiper .swiper-button-prev::before {
        font-size: 16px !important;
    }
    
    .service-cards-swiper .swiper-button-next {
        right: 5px !important;
    }
    
    .service-cards-swiper .swiper-button-prev {
        left: 5px !important;
    }
    
    .service-cards-swiper .swiper-button-next:hover,
    .service-cards-swiper .swiper-button-prev:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.3" fill="%23549076" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-grain)"/></svg>');
    pointer-events: none;
}

.gallery-section .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.gallery-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #549076, #467a63);
    border-radius: 2px;
}

.gallery-section .section-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.image-gallery {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 25px;
    padding: 20px 0;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 10px 30px rgba(84, 144, 118, 0.1);
    aspect-ratio: 4/3;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.1), rgba(70, 122, 99, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 15px;
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(84, 144, 118, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 15px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.85), rgba(70, 122, 99, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    border-radius: 15px;
}

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

.gallery-overlay i {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
}

.gallery-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(84, 144, 118, 0.1);
    display: inline-block;
}

.gallery-info p {
    margin: 0;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

.gallery-info i {
    color: #549076;
    margin-right: 8px;
}

/* Tablet improvements for gallery */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
}

/* Responsive improvements for gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 200px !important;
        gap: 15px !important;
        max-width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .gallery-item {
        width: 100% !important;
        height: 100% !important;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 12px;
    }
    
    .gallery-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px;
    }
    
    .gallery-overlay i {
        font-size: 20px !important;
        margin-bottom: 5px;
    }
    
    .gallery-overlay span {
        font-size: 11px !important;
        text-align: center;
        line-height: 1.2;
        max-width: 90%;
        padding: 0 5px;
    }
    
    .gallery-info {
        margin: 30px 15px 0;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 160px !important;
        gap: 10px !important;
        max-width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .gallery-item {
        width: 100% !important;
        height: 100% !important;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-sizing: border-box;
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 10px;
    }
    
    .gallery-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px;
    }
    
    .gallery-overlay i {
        font-size: 18px !important;
        margin-bottom: 3px;
    }
    
    .gallery-overlay span {
        font-size: 10px !important;
        text-align: center;
        line-height: 1.1;
        max-width: 85%;
        padding: 0 3px;
    }
    
    .gallery-info {
        margin: 20px 10px 0;
        padding: 12px;
        font-size: 14px;
    }
}

/* Services Info Section */
.services-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="services-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23549076" opacity="0.04"/><circle cx="75" cy="75" r="0.3" fill="%23467a63" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23services-grain)"/></svg>');
    pointer-events: none;
}

.services-info-section .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.services-info-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #549076, #467a63);
    border-radius: 2px;
}

.services-info-section .section-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

/* Services Features */
.services-features {
    position: relative;
    overflow: hidden; /* Prevent horizontal scroll issues */
    width: 100%;
    max-width: 100%;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.05), rgba(70, 122, 99, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.features-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #549076, #467a63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(84, 144, 118, 0.2);
}

.features-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(84, 144, 118, 0.3);
    animation: pulse-ring 2s infinite;
}

.features-icon i {
    font-size: 32px;
    color: white;
}

.features-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #549076, #467a63);
    margin: 0 auto;
    border-radius: 2px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Swipe hint for mobile */
.swipe-hint {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    padding: 8px 12px;
    font-size: 12px;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(84, 144, 118, 0.15);
    box-shadow: 0 2px 8px rgba(84, 144, 118, 0.1);
    width: fit-content;
    margin-left: auto;
}

.swipe-hint i {
    color: #549076;
    font-size: 10px;
    animation: swipe-animation 2s infinite;
}

@keyframes swipe-animation {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(84, 144, 118, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(84, 144, 118, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #549076, #467a63);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.15);
    border-color: rgba(84, 144, 118, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.1), rgba(70, 122, 99, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #549076, #467a63);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(84, 144, 118, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: #549076;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h4 {
    color: #549076;
}

.feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Services Showcase */
.services-showcase {
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.main-showcase {
    grid-column: span 2;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(84, 144, 118, 0.2);
}

.showcase-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.main-showcase .showcase-image {
    height: 350px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.85), rgba(70, 122, 99, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.showcase-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.overlay-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, #549076, #467a63);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.services-cta:hover::before {
    transform: rotate(-45deg) scale(1.2);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
}

.cta-content .btn {
    background: white;
    color: #549076;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #467a63;
}

/* Pulse animation */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-info-section {
        padding: 60px 0;
    }
    
    .services-showcase {
        display: none;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .main-showcase {
        grid-column: span 1;
    }
    
    .features-list {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .features-list::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .swipe-hint {
        display: flex;
        margin-bottom: 10px;
    }
    
    .feature-item {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        min-height: auto;
        padding: 20px;
        margin-right: 0;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
    }
    
    .services-info-section .section-header h2 {
        font-size: 36px;
    }
    
    .features-header h3 {
        font-size: 24px;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .features-list {
        padding: 15px 0;
        gap: 15px;
    }
    
    .feature-item {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
        padding: 18px;
        text-align: left;
    }
    
    .swipe-hint {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 8px;
    }
    
    .services-grid-swipe-hint {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 8px;
    }
    
    .service-item {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
        padding: 18px !important;
    }
}

/* Contact Action Section */
.contact-action-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f6f5 0%, #e8f0ea 100%);
    position: relative;
    overflow: hidden;
}

.contact-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="islamic-bg-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><g fill="%23549076" opacity="0.15"><circle cx="25" cy="25" r="2"><animate attributeName="r" values="2;4;2" dur="4s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.15;0.35;0.15" dur="4s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1.5"><animate attributeName="r" values="1.5;3;1.5" dur="5s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.15;0.25;0.15" dur="5s" repeatCount="indefinite"/></circle><path d="M50,20 L60,30 L50,40 L40,30 Z" opacity="0.12"><animateTransform attributeName="transform" attributeType="XML" type="rotate" values="0 50 30;360 50 30" dur="20s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.12;0.25;0.12" dur="20s" repeatCount="indefinite"/></path><path d="M20,70 L30,80 L20,90 L10,80 Z" opacity="0.18"><animateTransform attributeName="transform" attributeType="XML" type="rotate" values="360 20 80;0 20 80" dur="25s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.18;0.3;0.18" dur="25s" repeatCount="indefinite"/></path><polygon points="80,20 90,30 80,40 70,30" opacity="0.1"><animateTransform attributeName="transform" attributeType="XML" type="rotate" values="0 80 30;180 80 30;360 80 30" dur="15s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.1;0.22;0.1" dur="15s" repeatCount="indefinite"/></polygon></g><g fill="%23467a63" opacity="0.12"><circle cx="50" cy="50" r="1"><animate attributeName="r" values="1;2.5;1" dur="6s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.12;0.2;0.12" dur="6s" repeatCount="indefinite"/></circle><path d="M10,10 L20,10 L20,20 L10,20 Z" opacity="0.08"><animate attributeName="opacity" values="0.08;0.18;0.08" dur="8s" repeatCount="indefinite"/></path></g></pattern></defs><rect width="200" height="200" fill="url(%23islamic-bg-pattern)"/></svg>');
    background-size: 200px 200px;
    animation: backgroundMove 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-action-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><pattern id="islamic-secondary" width="75" height="75" patternUnits="userSpaceOnUse"><g fill="%23467a63" opacity="0.1"><path d="M37.5,10 L50,25 L37.5,40 L25,25 Z"><animateTransform attributeName="transform" attributeType="XML" type="scale" values="0.8;1.2;0.8" dur="8s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.1;0.2;0.1" dur="8s" repeatCount="indefinite"/></path><circle cx="15" cy="60" r="1.5"><animate attributeName="r" values="1.5;3.5;1.5" dur="7s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.1;0.18;0.1" dur="7s" repeatCount="indefinite"/></circle><circle cx="60" cy="15" r="1"><animate attributeName="r" values="1;2.5;1" dur="9s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.1;0.15;0.1" dur="9s" repeatCount="indefinite"/></circle><polygon points="20,45 30,55 20,65 10,55" opacity="0.08"><animateTransform attributeName="transform" attributeType="XML" type="rotate" values="0 20 55;360 20 55" dur="12s" repeatCount="indefinite"/><animate attributeName="opacity" values="0.08;0.16;0.08" dur="12s" repeatCount="indefinite"/></polygon></g></pattern></defs><rect width="150" height="150" fill="url(%23islamic-secondary)"/></svg>');
    background-size: 250px 250px;
    animation: backgroundMoveReverse 80s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-action-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.1);
    border: 1px solid rgba(84, 144, 118, 0.1);
    height: 100%;
    text-align: center;
    z-index: 1;
}

.contact-action-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="subtle-islamic" width="30" height="30" patternUnits="userSpaceOnUse"><g fill="none" stroke="%23549076" stroke-width="0.3" opacity="0.08"><circle cx="15" cy="15" r="8"/><path d="M7,15 L23,15 M15,7 L15,23"/><polygon points="15,3 21,9 15,15 9,9" fill="%23549076" opacity="0.02"/></g></pattern></defs><rect width="60" height="60" fill="url(%23subtle-islamic)"/></svg>');
    background-size: 80px 80px;
    pointer-events: none;
    border-radius: 20px;
    opacity: 0.4;
}

.fund-card::after {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="subtle-islamic-red" width="30" height="30" patternUnits="userSpaceOnUse"><g fill="none" stroke="%23ba0000" stroke-width="0.3" opacity="0.08"><circle cx="15" cy="15" r="8"/><path d="M7,15 L23,15 M15,7 L15,23"/><polygon points="15,3 21,9 15,15 9,9" fill="%23ba0000" opacity="0.02"/></g></pattern></defs><rect width="60" height="60" fill="url(%23subtle-islamic-red)"/></svg>');
}

.contact-action-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(84, 144, 118, 0.2);
    border-color: rgba(84, 144, 118, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.contact-card .card-icon {
    background: linear-gradient(135deg, #549076, #467a63);
    box-shadow: 0 10px 25px rgba(84, 144, 118, 0.3);
}

.fund-card .card-icon {
    background: linear-gradient(135deg, #ba0000, #dd3333);
    box-shadow: 0 10px 25px rgba(186, 0, 0, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0.3;
    animation: pulse-contact 2s infinite;
}

.card-icon i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.contact-action-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-action-card:hover .card-icon i {
    transform: scale(1.1);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.contact-card:hover .card-content h3 {
    color: #549076;
}

.fund-card:hover .card-content h3 {
    color: #ba0000;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-action-card:hover .card-content p {
    color: #5a6c7d;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-card .action-btn {
    background: linear-gradient(135deg, #549076, #467a63);
    color: white;
    box-shadow: 0 8px 20px rgba(84, 144, 118, 0.3);
}

.fund-card .action-btn {
    background: linear-gradient(135deg, #ba0000, #dd3333);
    color: white;
    box-shadow: 0 8px 20px rgba(186, 0, 0, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.contact-action-card:hover .action-btn::before {
    left: 100%;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(84, 144, 118, 0.4);
}

.fund-card .action-btn:hover {
    box-shadow: 0 12px 25px rgba(186, 0, 0, 0.4);
}

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

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

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-action-card:hover .card-background {
    opacity: 1;
}

.gradient-overlay {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(84, 144, 118, 0.03) 0%, rgba(70, 122, 99, 0.05) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="islamic-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><g fill="%23549076" opacity="0.06"><polygon points="10,2 18,10 10,18 2,10"/><circle cx="10" cy="10" r="1.5"/><path d="M5,5 L15,5 M5,15 L15,15 M5,5 L5,15 M15,5 L15,15" stroke="%23549076" stroke-width="0.5" opacity="0.04"/></g></pattern></defs><rect width="100" height="100" fill="url(%23islamic-pattern)"/></svg>');
    border-radius: 20px;
    background-size: 40px 40px, 60px 60px;
}

.fund-card .gradient-overlay {
    background: 
        linear-gradient(135deg, rgba(186, 0, 0, 0.03) 0%, rgba(221, 51, 51, 0.05) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="islamic-pattern-red" width="20" height="20" patternUnits="userSpaceOnUse"><g fill="%23ba0000" opacity="0.06"><polygon points="10,2 18,10 10,18 2,10"/><circle cx="10" cy="10" r="1.5"/><path d="M5,5 L15,5 M5,15 L15,15 M5,5 L5,15 M15,5 L15,15" stroke="%23ba0000" stroke-width="0.5" opacity="0.04"/></g></pattern></defs><rect width="100" height="100" fill="url(%23islamic-pattern-red)"/></svg>');
    background-size: 40px 40px, 60px 60px;
}

@keyframes pulse-contact {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-20px, -20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-40px, 20px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, -40px) rotate(270deg);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.8;
    }
}

@keyframes backgroundMoveReverse {
    0% {
        transform: translate(0, 0) rotate(360deg) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(30px, 15px) rotate(270deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -30px) rotate(180deg) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(-30px, 30px) rotate(90deg) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
}

/* Responsive Design for Contact Action */
@media (max-width: 768px) {
    .contact-action-section {
        padding: 60px 0;
    }
    
    .contact-action-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon i {
        font-size: 28px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .action-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Description Section */
.description-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="desc-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><g fill="%23549076" opacity="0.03"><circle cx="25" cy="25" r="1.5"/><path d="M15,25 L35,25 M25,15 L25,35" stroke="%23549076" stroke-width="0.5" opacity="0.02"/></g></pattern></defs><rect width="100" height="100" fill="url(%23desc-pattern)"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
}

.description-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.description-section .header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #549076, #467a63);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.description-section .section-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.description-main {
    position: relative;
    z-index: 2;
}

/* Content Badge */
.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #549076, #467a63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(84, 144, 118, 0.3);
}

.content-badge i {
    font-size: 16px;
}

/* Content Text */
.content-text {
    padding-left: 10px;
}

.content-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.highlight-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.08), rgba(70, 122, 99, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #549076;
    position: relative;
}

.highlight-text i {
    font-size: 20px;
    color: #549076;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text span {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
}

/* Images Grid */
.description-images {
    position: relative;
}

.images-grid {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.main-image {
    grid-row: span 2;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.15);
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(84, 144, 118, 0.25);
}

.secondary-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(84, 144, 118, 0.12);
    transition: all 0.4s ease;
}

.secondary-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(84, 144, 118, 0.2);
}

.main-image img,
.secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.main-image:hover img,
.secondary-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.8), rgba(70, 122, 99, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.main-image:hover .image-overlay,
.secondary-image:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.main-image:hover .overlay-icon,
.secondary-image:hover .overlay-icon {
    transform: scale(1);
}

.overlay-icon i {
    font-size: 24px;
    color: white;
}

.decorative-element {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: -1;
}

.circle-pattern {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(84, 144, 118, 0.2);
    border-radius: 50%;
    position: relative;
}

.circle-pattern::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(84, 144, 118, 0.15);
    border-radius: 50%;
}

.circle-pattern::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    background: rgba(84, 144, 118, 0.1);
    border-radius: 50%;
}

/* Professional Guarantee */
.professional-guarantee {
    margin-top: 40px;
}

.guarantee-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(84, 144, 118, 0.1);
    border: 1px solid rgba(84, 144, 118, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.03), rgba(70, 122, 99, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guarantee-card:hover::before {
    opacity: 1;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(84, 144, 118, 0.15);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #549076, #467a63);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 25px rgba(84, 144, 118, 0.2);
}

.guarantee-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px solid rgba(84, 144, 118, 0.3);
    animation: pulse-guarantee 3s infinite;
}

.guarantee-icon i {
    font-size: 32px;
    color: white;
}

.guarantee-content {
    flex: 1;
    padding-top: 5px;
}

.guarantee-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guarantee-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(84, 144, 118, 0.05);
    padding: 18px;
    border-radius: 12px;
    border-left: 3px solid #549076;
}

.guarantee-highlight i {
    font-size: 18px;
    color: #549076;
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-highlight span {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

@keyframes pulse-guarantee {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Responsive Design for Description */
@media (max-width: 768px) {
    .description-section {
        padding: 60px 0;
    }
    
    .description-section .section-header h2 {
        font-size: 32px;
    }
    
    .content-text h3 {
        font-size: 24px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 180px;
        height: auto;
    }
    
    .main-image {
        grid-row: span 1;
    }
    
    .guarantee-card {
        flex-direction: column;
    text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .guarantee-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .guarantee-icon i {
        font-size: 28px;
    }
    
    .guarantee-content h4 {
        font-size: 20px;
    }
}

/* Final Services Section */
.final-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.final-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="final-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><g fill="%23549076" opacity="0.03"><circle cx="30" cy="30" r="2"/><path d="M20,30 L40,30 M30,20 L30,40" stroke="%23549076" stroke-width="0.8" opacity="0.02"/><polygon points="15,15 25,20 20,30 10,25" opacity="0.02"/></g></pattern></defs><rect width="120" height="120" fill="url(%23final-pattern)"/></svg>');
    background-size: 120px 120px;
    pointer-events: none;
}

.final-services-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.final-services-section .header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #549076, #467a63);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.final-services-section .section-header p {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.final-services-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Services Intro */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #549076, #467a63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(84, 144, 118, 0.3);
}

.intro-badge i {
    font-size: 16px;
}

.intro-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.08), rgba(70, 122, 99, 0.05));
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #549076;
    margin-bottom: 25px;
    position: relative;
}

.intro-highlight i {
    font-size: 24px;
    color: #549076;
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.highlight-content span {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.expertise-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(84, 144, 118, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.expertise-note i {
    font-size: 20px;
    color: #549076;
    flex-shrink: 0;
    margin-top: 2px;
}

.expertise-note span {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

/* Services Overview */
.services-overview {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.overview-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(84, 144, 118, 0.08);
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #549076, #467a63);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(84, 144, 118, 0.2);
}

.header-icon i {
    font-size: 24px;
    color: white;
}

.overview-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Services Grid Swipe Hint */
.services-grid-swipe-hint {
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    padding: 8px 12px;
    font-size: 12px;
    color: #6c757d;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(84, 144, 118, 0.15);
    box-shadow: 0 2px 8px rgba(84, 144, 118, 0.1);
    width: fit-content;
    margin-left: auto;
}

.services-grid-swipe-hint i {
    color: #549076;
    font-size: 10px;
    animation: swipe-animation 2s infinite;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(84, 144, 118, 0.08);
    border: 1px solid rgba(84, 144, 118, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #549076, #467a63);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(84, 144, 118, 0.15);
    border-color: rgba(84, 144, 118, 0.15);
}

.item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(84, 144, 118, 0.1), rgba(70, 122, 99, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.service-item:hover .item-icon {
    background: linear-gradient(135deg, #549076, #467a63);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(84, 144, 118, 0.3);
}

.item-icon i {
    font-size: 20px;
    color: #549076;
    transition: all 0.3s ease;
}

.service-item:hover .item-icon i {
    color: white;
    transform: scale(1.1);
}

.item-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.service-item:hover .item-content h5 {
    color: #549076;
}

.item-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    margin-top: 40px;
}

.cta-card {
    background: linear-gradient(135deg, #549076, #467a63);
    border-radius: 25px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(84, 144, 118, 0.2);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.cta-card:hover::before {
    transform: rotate(-45deg) scale(1.2);
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-cta 2s infinite;
}

.cta-icon i {
    font-size: 40px;
    color: white;
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #549076;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    color: #467a63;
}

.cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: rotate(10deg);
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* Responsive Design for Final Services */
@media (max-width: 768px) {
    .final-services-section {
        padding: 60px 0;
    }
    
    .final-services-section .section-header h2 {
        font-size: 32px;
    }
    
    .intro-content h3 {
        font-size: 24px;
    }
    
    .services-grid-swipe-hint {
        display: flex;
        margin-bottom: 10px;
    }
    
    .services-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        grid-template-columns: unset !important;
    }
    .footer-main .services-grid .service-location {
        min-width: 165px !important;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .service-item {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }
    
    .item-icon {
        align-self: flex-start !important;
        margin-bottom: 0 !important;
    }
    
    .item-content {
        width: 100% !important;
    }
    
    .overview-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
    
    .header-icon i {
        font-size: 20px;
    }
    
    .overview-header h4 {
        font-size: 20px;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 32px;
    }
    
    .cta-content h4 {
        font-size: 24px;
    }
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #549076 0%, #467a63 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><g fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"><circle cx="25" cy="25" r="8"/><path d="M15,25 L35,25 M25,15 L25,35"/></g></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-features .feature-item i {
    font-size: 18px;
    color: white;
}

.cta-features .feature-item span {
    font-weight: 600;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.primary-cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    color: #549076;
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(84, 144, 118, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    color: #467a63;
}

.primary-cta-btn i {
    font-size: 24px;
    background: #549076;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 18px;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 2rem;
    opacity: 1;
    font-weight: 900;
}

.secondary-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

.secondary-cta-btn i {
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><g fill="none" stroke="rgba(84,144,118,0.08)" stroke-width="0.3"><circle cx="20" cy="20" r="6"/><path d="M12,20 L28,20 M20,12 L20,28"/></g></pattern></defs><rect width="80" height="80" fill="url(%23footer-pattern)"/></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

/* Footer Brand */
.footer-brand {
    position: relative;
}

.brand-logo {
    margin-bottom: 25px;
}

.brand-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

.brand-description h4 {
    font-size: 24px;
    font-weight: 700;
    color: #549076;
    margin-bottom: 15px;
}

.brand-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 30px;
}

.brand-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(84, 144, 118, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(84, 144, 118, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(84, 144, 118, 0.15);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: #549076;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 15px;
    color: white;
    font-weight: 500;
}

/* Footer Services */
.footer-services {
    position: relative;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: #549076;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(84, 144, 118, 0.3);
}

.footer-title i {
    font-size: 20px;
}

.services-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.service-location {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(52, 73, 94, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(84, 144, 118, 0.1);
}

.service-location:hover {
    background: rgba(84, 144, 118, 0.1);
    transform: translateY(-2px);
    border-color: rgba(84, 144, 118, 0.3);
}

.service-location i {
    font-size: 16px;
    color: #549076;
    flex-shrink: 0;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.city-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.service-note {
    font-size: 11px;
    color: #95a5a6;
    text-transform: uppercase;
}

.additional-locations {
    background: rgba(52, 73, 94, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(84, 144, 118, 0.2);
}

.additional-locations p {
    margin-bottom: 15px;
    color: #ecf0f1;
    font-size: 14px;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-tag {
    background: rgba(84, 144, 118, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(84, 144, 118, 0.3);
    transition: all 0.3s ease;
}

.location-tag:hover {
    background: rgba(84, 144, 118, 0.4);
    transform: scale(1.05);
}

/* Footer Info */
.footer-info {
    position: relative;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdc3c7;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.quick-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #549076;
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.quick-link:hover::before {
    transform: scaleY(1);
}

.quick-link:hover {
    color: white;
    background: rgba(84, 144, 118, 0.1);
    transform: translateX(8px);
}

.quick-link i {
    font-size: 12px;
    color: #549076;
    transition: all 0.3s ease;
}

.quick-link:hover i {
    transform: translateX(3px);
}

.business-hours {
    background: rgba(52, 73, 94, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(84, 144, 118, 0.2);
}

.business-hours h6 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #549076;
    margin-bottom: 20px;
}

.business-hours h6 i {
    font-size: 14px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(84, 144, 118, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item .day {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.hours-item .time {
    font-size: 13px;
    color: #95a5a6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(44, 62, 80, 0.8);
    padding: 25px 0;
    border-top: 1px solid rgba(84, 144, 118, 0.2);
    position: relative;
    z-index: 2;
}

.copyright p {
    margin: 0;
    color: #95a5a6;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #549076;
    background: rgba(84, 144, 118, 0.1);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 50px 0;
    }
    
    .cta-content .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-text {
        margin-bottom: 30px;
    }
    
    .cta-text h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-text p {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .cta-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
        justify-content: center;
        align-items: center;
    }
    
    .cta-features .feature-item {
        padding: 8px 12px;
        font-size: 12px;
        min-width: auto;
        justify-content: center;
        flex: 0 1 auto;
    }
    
    .cta-features .feature-item i {
        font-size: 16px;
    }
    
    .cta-actions {
        margin-top: 0;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .primary-cta-btn {
        padding: 18px 20px;
        width: 100%;
    }
    
    .primary-cta-btn i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .btn-content {
        align-items: center;
        text-align: center;
    }
    
    .btn-title {
        font-size: 16px;
    }
    
    .btn-subtitle {
        font-size: 13px;
    }
    
    .secondary-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
        justify-content: center;
        width: 100%;
    }
    
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links {
        margin-bottom: 30px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 15px;
    }
    
    .location-tags {
        justify-content: center;
    }
}

/* Call Now Button */
.call-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1b7e7b;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.call-now-btn:hover {
    transform: scale(1.05);
}

.call-now-btn i {
    font-size: 20px;
}

/* Language Footer */
.language-footer {
    background-color: #f8f8f8;
    padding: 15px 0;
    text-align: center;
}

.lang-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.lang-list a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #666;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.lang-list a:hover,
.lang-list .active a {
    background-color: #549076;
    color: white;
}

.lang-list img {
    width: 18px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact {
        display: none;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: auto;
        background: white;
        z-index: 1001;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        margin: 0;
    }

    .navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu a:focus,
    .nav-menu a:active,
    .nav-menu a:hover {
        outline: none;
        background-color: transparent;
    }

    .has-dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .has-dropdown > a.active::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown {
        display: none;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8f8f8 !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown.show {
        display: block;
    }

    .dropdown a {
        padding: 12px 40px;
        font-size: 15px;
        color: #666;
        -webkit-tap-highlight-color: transparent;
    }

    .dropdown a:hover,
    .dropdown a:focus,
    .dropdown a:active {
        background-color: transparent;
    }

    /* Body lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        margin-top: 20px;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        min-width: 180px;
        border-radius: 6px;
    }
    
    .btn i {
        font-size: 14px;
        margin-right: 6px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lang-list {
        gap: 10px;
    }
    
    .gallery-item {
        flex: 0 0 200px;
        height: 200px;
    }
    
    /* Footer CTA mobile optimizations */
    .footer-cta-section {
        padding: 40px 0;
    }
    
    .cta-text h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .cta-text p {
        font-size: 15px;
        padding: 0 5px;
    }
    
    .cta-features {
        gap: 8px;
        justify-content: center;
    }
    
    .cta-features .feature-item {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 18px;
        flex: 0 1 auto;
        white-space: nowrap;
    }
    
    .cta-features .feature-item i {
        font-size: 20px;
    }
    
    .cta-actions {
        max-width: 280px;
        gap: 12px;
    }
    
    .primary-cta-btn {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .primary-cta-btn i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .btn-title {
        font-size: 15px;
    }
    
    .btn-subtitle {
        font-size: 12px;
    }
    
    .secondary-cta-btn {
        padding: 10px 18px;
        font-size: 18px;
    }
}

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

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

.service-card,
.gallery-item,
.service-image-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: none;
}

/* Print styles */
@media print {
    .header-top,
    .navigation,
    .hero-section,
    .call-now-btn,
    .language-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Header Scroll Effect */
.header-main.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Language Dropdown */
.lang-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Service Card Animation */
.service-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification.info {
    background-color: #549076;
}

.notification.error {
    background-color: #dd3333;
}

.notification.success {
    background-color: #28a745;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #549076;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #467a63;
    transform: translateY(-2px);
}

/* Form Validation */
.error {
    border-color: #dd3333 !important;
    background-color: #ffe6e6;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

/* Gallery Controls */
.gallery-wrapper {
    cursor: grab;
}

.gallery-wrapper:active {
    cursor: grabbing;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================
   PAGE HERO STYLES MOVED TO css/page.css
   ========================================== */
/* Page Hero Section styles have been moved to css/page.css for better organization */

/* Introduction Content Section */
.intro-content-section {
    padding: 60px 0;
    background: white;
}

.intro-content-section .section-header {
    margin-bottom: 40px;
}

.intro-content-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1b7e7b;
    margin-bottom: 20px;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1b7e7b, #2e7d32);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.intro-images-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
}

.intro-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
}

.intro-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.08);
}

.intro-image.main-image {
    height: 350px;
}

.intro-image.secondary-image-1 {
    height: 280px;
}

.intro-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 126, 123, 0.4), rgba(46, 125, 50, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.intro-image:hover .image-overlay {
    opacity: 1;
}

.intro-image .overlay-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.intro-image:hover .overlay-icon {
    transform: scale(1) rotate(0deg);
}

.intro-image .overlay-icon i {
    font-size: 28px;
    color: #1b7e7b;
}

.intro-image.main-image .overlay-icon i {
    font-size: 32px;
}

.intro-image.secondary-image-1 .overlay-icon i {
    font-size: 24px;
}

.intro-image.secondary-image-2 .overlay-icon i {
    font-size: 24px;
}

/* Decorative Elements */
.intro-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #1b7e7b, #2e7d32, #1b7e7b);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-image:hover::before {
    opacity: 0.3;
}

.intro-images-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(27, 126, 123, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

.intro-text .content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-text .content-badge i {
    font-size: 16px;
}

.intro-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1b7e7b;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.item-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.item-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Processes Section */
.processes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-block {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 40px;
}

.process-block:hover {
    transform: translateY(-5px);
}

.process-block.center-block {
    text-align: center;
}

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

.process-block.center-block .process-header {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 24px;
    color: white;
}

.process-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1b7e7b;
    margin: 0;
}

.header-line {
    height: 3px;
    background: linear-gradient(90deg, #1b7e7b, #2e7d32);
    border-radius: 2px;
    flex: 1;
}

.process-block.center-block .header-line {
    width: 80px;
    flex: none;
}

.process-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 15px;
}

.process-visual {
    margin-top: 30px;
}

.process-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Three Column Services */
.three-column-services {
    margin-top: 40px;
}

.service-column {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #1b7e7b;
}

.service-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.column-header {
    text-align: center;
    margin-bottom: 25px;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.three-column-services .header-icon {
    margin: 0 auto 15px;
}
.header-icon i {
    font-size: 28px;
    color: white;
}

.column-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1b7e7b;
    line-height: 1.3;
}

.column-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.highlight-box {
    background: linear-gradient(135deg, #e8f5e8, #e0f2f1);
    border-left: 4px solid #2e7d32;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-box i {
    color: #2e7d32;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-box span {
    color: #2e7d32;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.service-features {
    margin-top: 20px;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-features .feature-item:hover {
    background: #e8f5e8;
}

.service-features .feature-item i {
    color: #1b7e7b;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.service-features .feature-item span {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.expertise-badge {
    background: linear-gradient(135deg, #fff3e0, #e8f5e8);
    border: 2px solid #ff9800;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.expertise-badge i {
    color: #ff9800;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.expertise-badge span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

/* After Service Section */
.after-service-section {
    padding: 80px 0;
    background: white;
}

.after-service-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.after-service-section .header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.after-service-section .header-icon i {
    font-size: 32px;
    color: white;
}

.after-service-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1b7e7b;
    margin-bottom: 20px;
}

.after-service-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.after-services-grid {
    margin-bottom: 60px;
}

.after-service-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.after-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1b7e7b, #2e7d32);
}

.after-service-card:hover {
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.after-service-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.after-service-card .card-icon i {
    font-size: 28px;
    color: white;
}

.after-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1b7e7b;
    margin-bottom: 15px;
}

.after-service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(27, 126, 123, 0.1);
    border: 2px solid #1b7e7b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1b7e7b;
}

.final-message {
    text-align: center;
}

.message-card {
    background: linear-gradient(135deg, #1b7e7b, #2e7d32);
    color: white;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.message-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse-message 4s ease-in-out infinite;
}

@keyframes pulse-message {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.message-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.message-icon i {
    font-size: 32px;
    color: white;
}

.message-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.message-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #fff;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1b7e7b;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-cta-btn:hover {
    background: #f8f9fa;
    color: #1b7e7b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-cta-btn i {
    font-size: 18px;
}

/* Alternative Compact Layout */
.intro-main.compact-layout .intro-image {
    margin-bottom: 20px;
}

.intro-main.compact-layout .intro-text {
    margin-top: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    
    .intro-content-section {
        padding: 40px 0;
    }
    
    .intro-content-section .section-header {
        margin-bottom: 30px;
    }
    
    .intro-content-section .section-header h2 {
        font-size: 28px;
    }
    
    .intro-images-container {
        gap: 15px;
    }
    
    .intro-image.main-image {
        height: 220px;
    }
    
    .intro-image.secondary-image-1 {
        height: 200px;
    }
    
    .intro-text h3 {
        font-size: 24px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .processes-section {
        padding: 60px 0;
    }
    
    .process-block {
        padding: 30px 20px;
    }
    
    .process-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .process-header h3 {
        font-size: 20px;
    }
    
    .header-line {
        width: 60px;
        flex: none;
    }
    
    .service-column {
        margin-bottom: 30px;
    }
    
    .column-header h4 {
        font-size: 16px;
    }
    
    .after-service-section {
        padding: 60px 0;
    }
    
    .after-service-section h2 {
        font-size: 28px;
    }
    
    .after-service-card {
        margin-bottom: 30px;
    }
    
    .message-card {
        padding: 40px 25px;
    }
    
    .message-content h4 {
        font-size: 24px;
    }
    
    .contact-cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    
    .intro-content-section .section-header h2 {
        font-size: 24px;
    }
    
    .intro-text h3 {
        font-size: 20px;
    }
    
    .process-block {
        padding: 25px 15px;
    }
    
    .service-column {
        padding: 25px 20px;
    }
    
    .after-service-card {
        padding: 30px 20px;
    }
    
    .message-card {
        padding: 30px 20px;
    }
    
    .message-content h4 {
        font-size: 20px;
    }
}

/* Social Media Styles */
.social-media {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-media h6 i {
    color: #549076;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    color: #fff;
}

.social-link:hover i {
    color: #fff;
    transform: scale(1.1);
}

/* Facebook */
.social-link.facebook {
    background: rgba(59, 89, 152, 0.1);
    border: 1px solid rgba(59, 89, 152, 0.3);
}

.social-link.facebook::before {
    background: #3b5998;
}

/* Twitter */
.social-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-link.twitter::before {
    background: #1da1f2;
}

/* Instagram */
.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* LinkedIn */
.social-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    border: 1px solid rgba(0, 119, 181, 0.3);
}

.social-link.linkedin::before {
    background: #0077b5;
}

/* YouTube */
.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-link.youtube::before {
    background: #ff0000;
}

/* Hover animation */
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-media {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .social-links {
        gap: 8px;
        justify-content: flex-start;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 14px;
    }
}