/* About page mobile tightening: images, stats, cards scale-in slightly */
@media (max-width: 767px) {
  .about-page .about-image img {
    width: 92%;
    margin: 0 auto;
    display: block;
  }

  .about-page .counter-box,
  .about-page .single-feature,
  .about-page .service-box {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-page .single-feature { padding: 20px; }
}
/* General Styles */
:root {
    --primary-font: 'Jost', sans-serif;
    --heading-color: #222;
    --text-color: #666;
    --accent-color: #f90;
    --light-color: #fff;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--heading-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h6 {
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
}

.bg-light {
    background-color: #f8f9fa !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer-area {
    background: var(--light-color);
    padding: 50px 0;
    border-top: 1px solid #eee;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--heading-color);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li a {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-social,
    .footer-menu {
        justify-content: center;
    }
    
    .footer-menu {
        margin-top: 20px;
    }
}

:root {
    --text-color: #696969;
    --heading-color: #1c1c1c;
    --link-color: #1c1c1c;
    --primary-color: #f33f3f;
    --secondary-color: #1c1c1c;
    --light-color: #ffffff;
    --dark-color: #1c1c1c;
    --border-color: #e5e5e5;
    --gray-color: #f7f7f7;
    --transition: all 0.4s ease;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header-area {
    position: relative;
    z-index: 999;
}

/* Header Top */
.header-top {
    background-color: var(--dark-color);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header-info ul li {
    margin-right: 30px;
    color: var(--light-color);
    font-size: 14px;
    font-weight: 300;
}

.header-info ul li:last-child {
    margin-right: 0;
}

.header-info ul li i {
    color: var(--accent-color);
    margin-right: 8px;
}

.header-info ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.header-info ul li a:hover {
    color: var(--accent-color);
}

.header-social a {
    color: var(--light-color);
    margin-left: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--accent-color);
}

/* Main Header */
.header-main {
    background: var(--light-color);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.site-logo h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: var(--heading-color);
}

/* Main Menu */
.main-menu {
    display: flex;
    justify-content: flex-end;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-menu ul li {
    position: relative;
    margin-left: 35px;
}

.main-menu ul li:first-child {
    margin-left: 0;
}

.main-menu ul li a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.main-menu ul li:hover > a,
.main-menu ul li.active > a {
    color: var(--accent-color);
}

.main-menu ul li.menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 14px;
}

/* Submenu */
.main-menu ul li .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    background: var(--light-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.main-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu ul li .sub-menu li {
    margin: 0;
}

.main-menu ul li .sub-menu li a {
    padding: 8px 25px;
    font-size: 15px;
    border-left: 3px solid transparent;
}

.main-menu ul li .sub-menu li:hover > a {
    border-left-color: var(--accent-color);
    background: rgba(220, 53, 69, 0.05);
}

/* Hero Section */
.hero-area {
    position: relative;
    background-color: var(--gray-color);
    overflow: hidden;
}

.single-slide {
    position: relative;
    padding: 220px 0;
    background-position: center;
    background-size: cover;
    z-index: 1;
}

/* Hero background video */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.single-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(28,28,28,0.95) 0%, rgba(28,28,28,0.75) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    padding-left: 70px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 80%;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    animation: fadeInUp 1.4s ease;
}

.hero-btn .theme-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
    margin-right: 30px;
}

.hero-btn .theme-btn i {
    margin-left: 10px;
    transition: var(--transition);
}

.hero-btn .theme-btn:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

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

.hero-btn .video-btn {
    display: inline-flex;
    align-items: center;
    color: var(--light-color);
    font-weight: 500;
}

.hero-btn .video-btn i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.hero-btn .video-btn i::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.hero-shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    z-index: 1;
}

.hero-shape .shape-1 {
    position: absolute;
    right: 10%;
    top: 20%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape .shape-2 {
    position: absolute;
    right: 30%;
    bottom: 20%;
    animation: float 8s ease-in-out infinite;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

/* Responsive */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        width: 30px;
        height: 24px;
        position: relative;
        cursor: pointer;
        background: transparent;
        border: none;
    }
    
    .navbar-toggler-icon {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--heading-color);
        border-radius: 3px;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: var(--heading-color);
        border-radius: 3px;
        left: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -10px;
    }
    
    .navbar-toggler-icon::after {
        bottom: -10px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    
    #mobileMenu {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e5e5e5;
    }
    
    #mobileMenu .main-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }
    
    #mobileMenu .main-menu > ul {
        flex-direction: column;
        align-items: start;
        padding: 0;
        margin: 0;
    }
    
    #mobileMenu .main-menu ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    #mobileMenu .main-menu ul li:last-child {
        border-bottom: none;
    }
    
    #mobileMenu .main-menu ul li a {
        padding: 15px 20px;
        display: block;
        color: var(--heading-color);
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    #mobileMenu .main-menu ul li a:hover,
    #mobileMenu .main-menu ul li.active > a {
        color: var(--accent-color);
        background: rgba(220, 53, 69, 0.05);
        padding-left: 25px;
    }
    
    #mobileMenu .main-menu .menu-item-has-children > a {
        position: relative;
    }
    
    #mobileMenu .main-menu .menu-item-has-children > a::after {
        content: '\f107';
        font-family: "Font Awesome 6 Free";
        font-weight: 600;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    #mobileMenu .main-menu .menu-item-has-children > a[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    #mobileMenu .main-menu .sub-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: #f8f8f8;
        margin-top: 0;
    }
    /* Bootstrap collapse uyumu: varsayılan kapalıyken gizle, show olduğunda göster */
    #mobileMenu .main-menu .sub-menu.collapse { display: none; }
    #mobileMenu .main-menu .sub-menu.collapse.show { display: block; }
    
    #mobileMenu .main-menu .sub-menu li {
        border-bottom: 1px solid #e5e5e5;
    }
    
    #mobileMenu .main-menu .sub-menu li a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        font-weight: 400;
    }
    
    #mobileMenu .mobile-contact-info {
        border-top: 1px solid #e5e5e5;
        padding-top: 20px;
    }
    
    #mobileMenu .mobile-contact-info .contact-item {
        color: #666;
        font-size: 14px;
    }
    
    #mobileMenu .mobile-contact-info .contact-item a {
        color: #666;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }
    
    #mobileMenu .mobile-contact-info .contact-item a:hover {
        color: var(--accent-color);
    }
    
    #mobileMenu .mobile-contact-info .contact-item i {
        margin-right: 10px;
        color: var(--accent-color);
        width: 20px;
    }
    
    #mobileMenu .mobile-contact-info .social-links {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    #mobileMenu .mobile-contact-info .social-links a {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f0f0;
        border-radius: 50%;
        color: #666;
        transition: all 0.3s ease;
    }
    
    #mobileMenu .mobile-contact-info .social-links a:hover {
        background: var(--accent-color);
        color: var(--light-color);
    }
    
    #mobileMenu .mobile-contact-info .social-links a[href*="wa.me"],
    #mobileMenu .mobile-contact-info .social-links a[href*="whatsapp"] {
        background: #25D366;
        color: var(--light-color);
    }
    
    #mobileMenu .mobile-contact-info .social-links a[href*="wa.me"]:hover,
    #mobileMenu .mobile-contact-info .social-links a[href*="whatsapp"]:hover {
        background: #128C7E;
        color: var(--light-color);
    }
    
    .main-menu {
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        background: var(--light-color);
        border-top: 1px solid var(--border-color);
        padding: 20px 0;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-menu > ul {
        flex-direction: column;
        align-items: start;
    }
    
    .main-menu ul li {
        margin: 0;
        width: 100%;
    }
    
    .main-menu ul li a {
        padding: 12px 25px;
    }
    
    .main-menu ul li .sub-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 25px;
        display: none;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .header-info ul li:not(:first-child) {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-btn .theme-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Features Section */
.single-feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 5px;
    transition: var(--transition);
    margin-bottom: 30px;
}

.single-feature:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 35px;
}

.feature-content h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* About Section */
.about-image {
    position: relative;
}


.about-content h6 {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-features .single-feature {
    text-align: left;
    padding: 0;
    background: transparent;
    margin-bottom: 30px;
}

.about-features .single-feature i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* About Page: Hero */
.about-page .about-hero {
    position: relative;
    padding: 140px 0 100px;
    color: var(--light-color);
    overflow: hidden;
}

.about-page .about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: -1;
}

.about-page .about-hero h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-page .about-hero p {
    opacity: 0.9;
}

/* Skills */
.about-page .skill-item {
    margin-bottom: 18px;
}

.about-page .skill-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
}

/* Services Page: Hero */
.services-page .services-hero,
.portfolio-page .services-hero,
.contact-page .services-hero {
    position: relative;
    padding: 140px 0 90px;
    color: var(--light-color);
    overflow: hidden;
}

.services-page .services-hero-bg,
.portfolio-page .services-hero-bg,
.contact-page .services-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    z-index: -1;
}

.services-page .services-hero h1,
.portfolio-page .services-hero h1,
.contact-page .services-hero h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-page .services-hero p,
.portfolio-page .services-hero p,
.contact-page .services-hero p {
    opacity: 0.9;
}

/* Services Grid Cards */
.services-page .service-card {
    border: 1px solid #eee;
    border-radius: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Process numbered badges (about & services) */
.process-grid {
    counter-reset: step;
}

.process-grid .single-feature {
    counter-increment: step;
}

.process-grid .single-feature .feature-icon {
    position: relative;
    margin-bottom: 56px; /* numara çemberi için alan */
}

.process-grid .single-feature .feature-icon::after {
    content: counter(step);
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* (removed) Service Detail Page custom styles — page uses global components */
.about-page .skill-bar > span {
    display: block;
    height: 100%;
    background: var(--accent-color);
    border-radius: 999px;
}

/* Process cards (Interview/Plan/Design/Development) */
.about-page .single-feature {
    text-align: left;
    padding: 28px 24px;
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-page .single-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-page .single-feature .feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 74, 23, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .single-feature .feature-content h4 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.about-page .single-feature .feature-content p {
    margin: 0;
}

/* Service boxes on about */
.about-page .service-box {
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.about-page .service-box:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Counters */
.about-page .counter-box h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.about-page .counter-box p {
    color: var(--heading-color);
    opacity: .8;
}

/* Numbered detail lists */
.detail-list.numbered { list-style: none; margin: 0; padding: 0; counter-reset: item; }
.detail-list.numbered li {
    display: grid;
    grid-template-columns: 28px auto; /* sabit numara + metin */
    column-gap: 12px;
    align-items: center;
    padding: 8px 0;
    width: max-content;       /* içeriğe göre genişlik */
    margin: 8px auto;         /* bloğu ortala */
    text-align: left;         /* metin sol hizalı kalsın */
}
.detail-list.numbered li::before {
    counter-increment: item;
    content: counter(item);
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

/* CTA - Teklif Al */
.about-page .about-cta,
.services-page .about-cta,
.portfolio-page .about-cta {
    position: relative;
    background: linear-gradient(135deg, rgba(28,28,28,1) 0%, rgba(28,28,28,0.92) 40%, rgba(255,74,23,0.14) 100%);
    border-radius: 16px;
    padding: 70px 0;
    overflow: hidden;
}

.about-page .about-cta::after,
.services-page .about-cta::after,
.portfolio-page .about-cta::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(closest-side, rgba(255,74,23,0.35), rgba(255,74,23,0));
    filter: blur(8px);
}

.about-page .about-cta h2,
.about-page .about-cta p,
.services-page .about-cta h2,
.services-page .about-cta p,
.portfolio-page .about-cta h2,
.portfolio-page .about-cta p {
    color: var(--light-color);
}

.about-page .about-cta .theme-btn,
.services-page .about-cta .theme-btn,
.portfolio-page .about-cta .theme-btn {
    padding: 18px 40px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(255, 74, 23, 0.35), 0 2px 4px rgba(0,0,0,0.2);
    background: var(--accent-color);
}



.about-page .about-cta .theme-btn i,
.services-page .about-cta .theme-btn i,
.portfolio-page .about-cta .theme-btn i {
    margin-left: 10px;
    transition: transform .25s ease;
}

.about-page .about-cta .theme-btn:hover i,
.services-page .about-cta .theme-btn:hover i,
.portfolio-page .about-cta .theme-btn:hover i {
    transform: translateX(6px);
}

/* Services Section */
.service-box {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 5px;
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.service-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    margin: 0 auto 25px;
}

.service-icon i {
    color: var(--accent-color);
    font-size: 30px;
}

.service-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.read-more {
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Service Image */
.service-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.service-detail-image {
    max-width: 100%;
    width: auto;
    max-height: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-actions .read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-actions .portfolio-link {
    color: var(--heading-color);
}

.service-actions .portfolio-link:hover {
    color: var(--accent-color);
}

/* Responsive Service Image */
@media (max-width: 768px) {
    .service-detail-image {
        max-width: 100%;
        max-height: 400px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .service-actions .read-more {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .service-portfolio-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* Global button defaults to prevent hover text disappearing */
.theme-btn {
    color: var(--light-color);
}

.theme-btn:hover {
    color: var(--light-color);
    text-decoration: none;
}

/* Portfolio filters as textual links: "Tümü / Broşür" görünümü */
.portfolio-page #portfolio-filters {
    gap: 0;
}

.portfolio-page #portfolio-filters .filter-link {
    position: relative;
    padding: 0 14px;
    color: var(--heading-color);
    font-weight: 500;
    line-height: 1;
}

.portfolio-page #portfolio-filters .filter-link:not(:first-child)::before {
    content: '/';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-6px);
    color: #c9c9c9;
}

.portfolio-page #portfolio-filters .filter-link:hover {
    color: var(--accent-color);
}

.portfolio-page #portfolio-filters .filter-link.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 6px;
}

/* Portfolio: Load more button (visual enhancement) */
.portfolio-page .load-more-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 999px;
    padding: 14px 34px;
    font-weight: 600;
}

.portfolio-page .load-more-btn i {
    margin-left: 10px;
    transition: transform .25s ease;
}

.portfolio-page .load-more-btn:hover {
    background: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.portfolio-page .load-more-btn:hover i {
    transform: translateY(3px);
}

/* Portfolio Section */
.portfolio-item {
    margin-bottom: 30px;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-img img {
    width: 100%;
    transition: var(--transition);
}

.portfolio-content {
    background: var(--light-color);
    padding: 25px;
    border-radius: 0 0 5px 5px;
}

.portfolio-content span {
    color: var(--accent-color);
    font-weight: 500;
}

.portfolio-content h4 {
    margin: 10px 0 0;
    font-weight: 600;
}

.portfolio-content h4 a {
    color: var(--heading-color);
    transition: var(--transition);
}

.portfolio-content h4 a:hover {
    color: var(--accent-color);
}

/* Service Portfolio Button */
.service-portfolio-btn-wrapper {
    text-align: center;
    padding: 30px 0;
}

.service-portfolio-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 153, 0, 0.3);
}

.service-portfolio-btn:hover {
    background: var(--heading-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-portfolio-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Counter Section */
.counter-box {
    text-align: center;
    margin-bottom: 30px;
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.counter-box p {
    font-weight: 500;
    margin: 0;
    color: var(--heading-color);
}



/* Blog Section */
.blog-post {
    margin-bottom: 30px;
    background: var(--light-color);
    border-radius: 5px;
    overflow: hidden;
}

/* Page sidebars (ensure visibility on light background) */
.services-page .widget {
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.services-page .widget-title {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.services-page .widget ul li a {
    color: var(--heading-color);
}

.services-page .widget ul li a:hover {
    color: var(--accent-color);
}

/* Blog unified sidebar */
.services-page .blog-sidebar .search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.services-page .blog-sidebar .search-form input {
    flex: 1;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 12px;
}

.services-page .blog-sidebar .search-form button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--light-color);
}

.services-page .blog-sidebar .sidebar-section {
    margin-top: 20px;
}

.services-page .blog-sidebar .category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-page .blog-sidebar .category-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.services-page .blog-sidebar .category-list li:last-child {
    border-bottom: none;
}

.services-page .blog-sidebar .category-list .count { color: #9a9a9a; }

.services-page .blog-sidebar .recent-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.services-page .blog-sidebar .recent-post:last-child { border-bottom: none; }

.services-page .blog-sidebar .recent-post .thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.services-page .blog-sidebar .recent-post .meta .title {
    display: block;
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 4px;
}

.services-page .blog-sidebar .recent-post .meta .date {
    font-size: 13px;
    color: #9a9a9a;
}

.services-page .blog-sidebar .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.services-page .blog-sidebar .tag-cloud a {
    display: inline-block;
    padding: 6px 10px;
    background: #f5f5f5;
    color: var(--heading-color);
    border-radius: 6px;
    font-size: 13px;
}

.services-page .blog-sidebar .tag-cloud a:hover { background: var(--accent-color); color: var(--light-color); }

.services-page .blog-sidebar .newsletter-form { display: flex; gap: 10px; }
.services-page .blog-sidebar .newsletter-form input {
    flex: 1;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0 12px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    background: var(--light-color);
    color: var(--heading-color);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.pagination-link:hover {
    background: var(--accent-color);
    color: var(--light-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.pagination-link.active {
    background: var(--accent-color);
    color: var(--light-color);
    border-color: var(--accent-color);
    font-weight: 600;
}

.pagination-link.prev,
.pagination-link.next {
    min-width: 42px;
    padding: 0;
}

.pagination-link.dots {
    border: none;
    background: transparent;
    cursor: default;
    pointer-events: none;
}

.pagination-link.dots:hover {
    background: transparent;
    transform: none;
    color: var(--heading-color);
}

@media (max-width: 575.98px) {
    .pagination-list {
        gap: 6px;
    }
    
    .pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        padding: 0 10px;
    }
    
    .pagination-link.prev,
    .pagination-link.next {
        min-width: 36px;
    }
    
    .blog-pagination li::before {
        width: 24px; height: 24px; font-size: 12px;
    }
}

/* Blog Single Detail Page Styles */
.blog-single {
    background: var(--light-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.blog-single .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-single .post-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-single .post-img:hover img {
    transform: scale(1.02);
}

.post-date-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.post-date-overlay .day {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.post-date-overlay .month {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 4px;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--heading-color);
    font-size: 14px;
}

.meta-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.post-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 30px 0 20px;
    line-height: 1.3;
}

.post-excerpt {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.post-content {
    line-height: 1.9;
    color: #444;
}

.post-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 35px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.post-content strong {
    color: var(--heading-color);
    font-weight: 600;
}

.post-quote {
    position: relative;
    background: linear-gradient(135deg, #f7f7f7 0%, #fafafa 100%);
    border-left: 4px solid var(--accent-color);
    padding: 30px 30px 30px 50px;
    margin: 35px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.post-quote i {
    position: absolute;
    left: 20px;
    top: 25px;
    font-size: 32px;
    color: var(--accent-color);
    opacity: 0.3;
}

.post-quote p {
    font-size: 18px;
    font-style: italic;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.7;
}

.post-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.post-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.post-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 16px;
}

.post-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
}

.tags-label i {
    color: var(--accent-color);
    margin-right: 5px;
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    color: var(--heading-color);
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: var(--accent-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn.facebook:hover { background: #1877f2; color: #fff; }
.share-btn.twitter:hover { background: #1da1f2; color: #fff; }
.share-btn.linkedin:hover { background: #0077b5; color: #fff; }

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item.prev-post a {
    flex-direction: row;
}

.nav-item.next-post a {
    flex-direction: row-reverse;
    text-align: right;
}

.nav-item a:hover {
    background: var(--accent-color);
    color: var(--light-color);
    transform: translateX(5px);
}

.nav-item.next-post a:hover {
    transform: translateX(-5px);
}

.nav-item i {
    font-size: 20px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.nav-item a:hover i {
    color: var(--light-color);
}

.nav-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    margin-bottom: 5px;
}

.nav-item a:hover .nav-label {
    color: rgba(255,255,255,0.8);
}

.nav-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
}

.nav-item a:hover .nav-title {
    color: var(--light-color);
}

@media (max-width: 991px) {
    .blog-single {
        padding: 30px 20px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-excerpt {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .post-date-overlay {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
    }
    
    .post-date-overlay .day {
        font-size: 24px;
    }
}

.post-img {
    position: relative;
}

.post-img img {
    width: 100%;
}

.post-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
}

.post-date span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.post-date span:last-child {
    font-size: 14px;
    margin-top: 5px;
}

.post-content {
    padding: 25px;
}

.post-meta {
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 15px;
    color: var(--text-color);
    font-size: 14px;
}

.post-meta span i {
    margin-right: 5px;
    color: var(--accent-color);
}

.post-content h4 {
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.post-content h4 a {
    color: var(--heading-color);
    transition: var(--transition);
}

.post-content h4 a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer-area {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
}

.footer-widgets {
    padding: 100px 0 70px;
}

.widget {
    margin-bottom: 30px;
}

.widget-title {
    color: var(--light-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-widget p {
    margin-bottom: 25px;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul li {
    margin-bottom: 12px;
}

.widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.widget ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-widget ul li {
    padding-left: 30px;
    position: relative;
}

.contact-widget ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    margin: 0;
}

.footer-area {
    background: var(--light-color);
    padding: 50px 0;
    border-top: 1px solid #eee;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--heading-color);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li a {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-menu li a:hover {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 36px;
    }
    
    .experience-box {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .footer-social,
    .footer-menu {
        justify-content: center;
    }
    
    .footer-menu {
        margin-top: 20px;
    }
}

/* Contact Page */
.contact-page .contact-card {
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.contact-page .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.contact-page .contact-card:hover .icon {
    background: var(--accent-color);
    color: var(--light-color);
    transform: scale(1.1);
}

.contact-page .contact-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-page .contact-card h5 {
    margin-bottom: 8px;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
}

.contact-page .contact-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-page .contact-card .contact-link {
    color: var(--heading-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-page .contact-card .contact-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-page .contact-form-wrap {
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-page .contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #ffb84d 100%);
}

.contact-page .form-header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-page .form-header h3 {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-page .form-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-page .contact-form .form-group {
    margin-bottom: 24px;
}

.contact-page .contact-form .form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-page .contact-form .form-label i {
    color: var(--accent-color);
    font-size: 16px;
}

.contact-page .contact-form .form-control {
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    padding: 16px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-page .contact-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(255,153,0,0.15);
    transform: translateY(-2px);
    background: var(--light-color);
}

.contact-page .contact-form textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.contact-page .form-submit {
    margin-top: 30px;
    text-align: center;
}

.contact-page .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ffb84d 100%);
    color: var(--light-color);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,153,0,0.3);
    position: relative;
    overflow: hidden;
}

.contact-page .submit-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 ease;
}

.contact-page .submit-btn:hover::before {
    left: 100%;
}

.contact-page .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255,153,0,0.4);
}

.contact-page .submit-btn:active {
    transform: translateY(-1px);
}

.contact-page .submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-page .submit-btn:hover i {
    transform: translateX(5px);
}

.contact-page .contact-map {
    padding: 60px 0;
    background: #f7f7f7;
}

.contact-page .map-embed-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-page .map-embed {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-page .map-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.contact-page .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255,153,0,0.4);
    transition: all 0.3s ease;
}

.contact-page .directions-btn:hover {
    background: #ffb84d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,0,0.5);
    color: var(--light-color);
}

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

@media (max-width: 991px) {
    .contact-page .contact-form-wrap { 
        padding: 35px 25px; 
    }
    
    .contact-page .form-header h3 {
        font-size: 26px;
    }
    
    .contact-page .map-embed { 
        height: 500px; 
    }
    
    .contact-page .contact-map {
        padding: 40px 0;
    }
    
    .contact-page .directions-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .contact-page .contact-card {
        padding: 24px 20px;
    }
    
    .contact-page .contact-form-wrap {
        padding: 30px 20px;
    }
    
    .contact-page .form-header h3 {
        font-size: 24px;
    }
    
    .contact-page .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-page .map-embed {
        height: 400px;
    }
    
    .contact-page .map-actions {
        top: 15px;
        right: 15px;
    }
    
    .contact-page .directions-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}