/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Top Bar - Lacivert Üst Çubuk */
.top-bar-info {
    background: #1e3a5f;
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: white;
    text-decoration: none;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: #1e3a5f;
    font-size: 20px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #2d5a8f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5a8f;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #1e3a5f;
}

/* Hero Section - Büyük Resim */
.hero {
    position: relative;
    height: 600px;
    background-image: url('/uploads/paketleme.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 600px;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero {
        height: 450px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* Services Section - Beyaz Kartlar */
.services {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-right: 1px solid #f0f0f0;
}

.service-card:last-child {
    border-right: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 42px;
    color: #2d5a8f;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        margin-top: -50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        padding: 25px 15px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .service-icon {
        font-size: 36px;
    }
    
    .service-card h3 {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section - Kırmızı Sol Taraf */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: center;
}

.about-left {
    background: #1e3a5f;
    color: white;
    padding: 80px 60px;
    min-height: 500px;
}

.about-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-button {
    display: inline-block;
    background: white;
    color: #1e3a5f;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
}

.about-button:hover {
    background: #f0f0f0;
}

.about-right {
    padding: 40px;
}

.about-right img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #2d5a8f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-left {
        padding: 60px 40px;
    }
    
    .about-right {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .about-left h2 {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .logo img {
        height: 120px;
    }
}

/* Process Section - Zigzag Layout */
.process {
    padding: 100px 0;
    background: #fff;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-header p {
    font-size: 15px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.process-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.process-item:nth-child(even) .process-image {
    order: 2;
}

.process-item:nth-child(even) .process-content {
    order: 1;
}

.process-image {
    position: relative;
}

.process-image img {
    width: 100%;
    height: auto;
    border: 5px solid #2d5a8f;
    border-radius: 3px;
}

.process-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.process-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

@media (max-width: 968px) {
    .process-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-item:nth-child(even) .process-image,
    .process-item:nth-child(even) .process-content {
        order: initial;
    }
    
    .process-content h3 {
        font-size: 24px;
    }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 15px;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2d5a8f;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: #2d5a8f;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    color: #2d5a8f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 10px;
}

.blog-view-all {
    text-align: center;
}

.blog-view-all .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #2d5a8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(45, 90, 143, 0.3);
}

.blog-view-all .btn:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 143, 0.4);
}

.blog-view-all .btn i {
    font-size: 16px;
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Service Areas Section - Koyu Mavi Arka Plan */
.service-areas {
    padding: 100px 0;
    background: #1e3a5f;
    color: white;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-areas-header h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-areas-header p {
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.areas-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.area-column {
    background: white;
    padding: 40px 30px;
    border-radius: 5px;
}

.area-column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.area-list {
    list-style: none;
}

.area-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li i {
    color: #2d5a8f;
    font-size: 12px;
}

@media (max-width: 968px) {
    .areas-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .service-areas {
        padding: 60px 0;
    }
    
    .service-areas-header h2 {
        font-size: 28px;
    }
    
    .area-column {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c41e1e;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.footer-contact i {
    color: #2d5a8f;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive - Mobil Uyumluluk */
@media (max-width: 968px) {
    .top-bar-info {
        font-size: 12px;
    }
    
    .top-bar-info .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }
    
    .top-bar-left span {
        justify-content: center;
    }
    
    .logo img {
        height: 120px !important;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

/* Scroll to Top Button - Gizlendi */
.scroll-top {
    display: none !important;
}

/* Phone Call Button - Yeni */
.phone-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #2d5a8f 0%, #1e3a5f 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(45, 90, 143, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: phoneRing 2s ease-in-out infinite;
}

.phone-call-button i {
    font-size: 24px;
    animation: phoneShake 1s ease-in-out infinite;
}

.phone-call-button:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f1f3f 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 90, 143, 0.6);
}

.phone-call-button:active {
    transform: scale(0.95);
}

/* Phone Button Animations */
@keyframes phoneRing {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(45, 90, 143, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(45, 90, 143, 0.7), 0 0 0 10px rgba(45, 90, 143, 0.1), 0 0 0 20px rgba(45, 90, 143, 0.05);
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .phone-call-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .phone-call-button i {
        font-size: 22px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}


/* Blog Sayfası Kategori Butonları */
.category-btn {
    display: inline-block;
    padding: 10px 25px;
    margin: 5px;
    background: white;
    color: #2d5a8f;
    text-decoration: none;
    border: 2px solid #2d5a8f;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #2d5a8f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(45, 90, 143, 0.3);
}

.category-btn.active {
    background: #2d5a8f;
    color: white;
    box-shadow: 0 3px 10px rgba(45, 90, 143, 0.3);
}

/* Blog Devamını Oku Linki */
.read-more-link {
    color: #2d5a8f;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more-link:hover {
    color: #1e3a5f;
    gap: 8px;
}

.read-more-link i {
    transition: transform 0.3s;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Blog Detay Geri Dön Butonu */
.back-to-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #2d5a8f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(45, 90, 143, 0.3);
}

.back-to-blog-btn:hover {
    background: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 143, 0.4);
}

.back-to-blog-btn i {
    transition: transform 0.3s;
}

.back-to-blog-btn:hover i {
    transform: translateX(-3px);
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 32px;
    color: white;
}

/* WhatsApp Pulse Animation */
.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* WhatsApp Notification Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    animation: tooltipSlide 0.5s ease-out;
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.whatsapp-tooltip-text {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-tooltip-icon {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes tooltipSlide {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 13px;
        padding: 10px 15px;
        max-width: 200px;
        white-space: normal;
    }
}


/* Service Area Page Styles */
.page-header {
    padding: 80px 0 60px;
    text-align: center;
    color: white;
    position: relative;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.service-area-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.area-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: auto;
    display: block;
}

.area-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.area-detailed-content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    line-height: 1.8;
    color: #666;
}

.area-services {
    margin-top: 50px;
}

.area-services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3a5f;
}

.why-choose-us {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e3a5f;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a5298 100%);
    color: white;
}

.contact-card h3 {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.phone-number:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.other-areas-list {
    list-style: none;
}

.other-areas-list li {
    margin-bottom: 12px;
}

.other-areas-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s;
}

.other-areas-list a:hover {
    color: #1e3a5f;
    padding-left: 10px;
}

.other-areas-list i {
    color: #1e3a5f;
    font-size: 0.8rem;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-content h4 a:hover {
    color: #1e3a5f;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
}

/* Service Areas List Link Style */
.area-list li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.area-list li a:hover {
    color: #1e3a5f;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .main-content {
        padding: 25px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .area-services h2,
    .why-choose-us h2 {
        font-size: 1.5rem;
    }
}
