/* Çelik Endüstri - Endüstriyel Tema CSS */

:root {
    /* Ana Renk Paleti - Endüstriyel + Beyaz */
    --primary-color: #1a1a1a;        /* Koyu gri/siyah */
    --secondary-color: #2c3e50;       /* Koyu mavi-gri */
    --accent-color: #e74c3c;          /* Kırmızı vurgu */
    --accent-gold: #f39c12;           /* Altın sarısı */
    --accent-silver: #bdc3c7;         /* Gümüş */
    --accent-orange: #e67e22;         /* Turuncu */
    
    /* Metalik Tonlar */
    --steel: #95a5a6;                 /* Çelik grisi */
    --iron: #7f8c8d;                  /* Demir grisi */
    --chrome: #ecf0f1;                /* Krom */
    --bronze: #cd7f32;                /* Bronz */
    
    /* Arka Plan Renkleri - Dengeli Tonlar */
    --bg-dark: #0d1117;               /* Çok koyu arka plan */
    --bg-light: #f8f9fa;              /* Açık gri arka plan */
    --bg-section: #ffffff;            /* Beyaz bölüm arka planı */
    --bg-card: #ffffff;               /* Beyaz kart arka planı */
    --bg-white: #ffffff;              /* Saf beyaz */
    --bg-light-gray: #f1f3f4;         /* Çok açık gri */
    --bg-medium-gray: #e9ecef;        /* Orta gri */
    --bg-alternate: #f8f9fa;          /* Alternatif arka plan */
    
    /* Metin Renkleri */
    --text-primary: #2c3e50;          /* Koyu mavi metin */
    --text-secondary: #6c757d;       /* Gri metin */
    --text-muted: #868e96;            /* Soluk metin */
    --text-dark: #212529;             /* Koyu metin */
    
    /* Gölgeler */
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.5);
    
    /* Geçişler */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Metalik Arka Plan Efekti */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 8px 0;
    border-bottom: 1px solid var(--accent-gold);
    font-size: 0.9rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-item i {
    color: var(--accent-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.top-bar-item a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.social-link {
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Header ve Navigation */
.header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-gold) !important;
    text-decoration: none;
}

.brand-text {
    margin-left: 10px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.8rem 1.2rem !important;
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(243, 156, 18, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slide {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slider .carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 5px;
    transition: var(--transition-fast);
}

.hero-slider .carousel-indicators button.active {
    background: var(--accent-gold);
    border-color: white;
    transform: scale(1.2);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
    z-index: 10;
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(243, 156, 18, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section (Eski) */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-medium);
}

.btn-warning {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border: none;
    color: var(--primary-color);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
    color: var(--primary-color);
}

.btn-outline-light {
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-primary);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-medium);
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background: var(--bg-section);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: var(--transition-slow);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.service-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--bg-light);
    color: var(--primary-color);
}

.why-choose-us .section-title {
    color: var(--primary-color);
}

.feature-card {
    padding: 2rem;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.feature-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Info Section */
.contact-info {
    background: var(--bg-section);
}

.contact-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-top: 3px solid var(--accent-gold);
}

.footer h5, .footer h6 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer p, .footer li {
    color: var(--text-secondary);
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(243, 156, 18, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    border: none;
    padding: 12px 25px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    color: var(--primary-color);
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .navbar-brand .brand-text {
        display: none;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Top Bar - Mobile Fixes */
    .top-bar {
        padding: 10px 0;
        font-size: 0.75rem;
    }
    
    .top-bar .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .top-bar .row {
        margin: 0;
    }
    
    .top-bar .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0 5px;
    }
    
    .top-bar-info {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .top-bar-social {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .top-bar-item {
        width: 100%;
    }
    
    .top-bar-item a {
        font-size: 0.9rem;
    }
    
    /* E-posta adresini mobilde kısalt */
    .top-bar-social .top-bar-item a[href^="mailto:"] {
        max-width: calc(100% - 30px);
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        word-break: break-all;
    }
    
    .top-bar-social .top-bar-item {
        max-width: 100%;
        overflow: hidden;
    }
    
    .social-links {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent-gold);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Hizmetler Sayfası Özel Stiller */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 80px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(231, 76, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    text-shadow: none;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-secondary);
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: var(--transition-slow);
}

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

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition-fast);
}

.service-detail-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.service-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Specialized Services */
.specialty-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1rem;
    transition: var(--transition-fast);
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.specialty-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialty-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process Section */
.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 1rem;
    transition: var(--transition-fast);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.process-step h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .btn-light {
    background: white;
    color: var(--accent-orange);
    border: 2px solid white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.cta-section .btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .service-image img {
        height: 150px;
    }
    
    .specialty-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-detail-card {
        padding: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .specialty-card {
        padding: 1rem;
    }
}

/* Hakkımızda Sayfası Özel Stiller */
.about-story {
    background: var(--bg-section);
}

.story-content .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-medium);
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: var(--transition-slow);
}

.mission-card:hover::before, .vision-card:hover::before {
    left: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.mission-card:hover .mission-icon, .vision-card:hover .vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    font-size: 1.1rem;
}

/* Values Section */
.value-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    transition: var(--transition-medium);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: var(--transition-slow);
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.value-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(243, 156, 18, 0.8), rgba(231, 76, 60, 0.8));
    opacity: 0;
    transition: var(--transition-fast);
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-position {
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    color: white;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.3);
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .mission-card, .vision-card {
        padding: 2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .story-content .lead {
        font-size: 1rem;
    }
    
    .mission-card, .vision-card {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1rem;
    }
    
    .team-content {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* İletişim Sayfası Özel Stiller */
.contact-section {
    background: var(--bg-section);
}

.contact-info-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(243, 156, 18, 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
    transition: var(--transition-slow);
}

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

.contact-info-card h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.contact-details h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.social-links h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    color: white;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: var(--admin-success);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--admin-accent);
}

.invalid-feedback {
    color: var(--admin-accent);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--admin-success);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.form-check-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-gold));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    margin: 2rem 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: var(--transition-medium);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: white;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-container {
        margin: 1rem 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card h3,
    .contact-form-card h3 {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Blog Sayfası Özel Stiller */
.blog-section {
    background: var(--bg-section);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-date, .blog-views {
    display: flex;
    align-items: center;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--accent-gold);
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-card .btn-outline-primary {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: var(--transition-fast);
    align-self: flex-start;
}

.blog-card .btn-outline-primary:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.no-posts {
    padding: 4rem 2rem;
}

.no-posts i {
    opacity: 0.5;
}

.no-posts h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-form .form-control {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.newsletter-form .btn-light {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    font-weight: 600;
    background: white;
    color: var(--accent-orange);
    border: 2px solid white;
    transition: var(--transition-fast);
}

.newsletter-form .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Pagination */
.pagination .page-link {
    border: 2px solid var(--border-color);
    color: var(--accent-gold);
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 10px;
    transition: var(--transition-fast);
    font-weight: 500;
}

.pagination .page-link:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.pagination .page-item.active .page-link {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    border-color: var(--border-color);
    background: var(--bg-light);
}

/* Responsive Design for Blog Page */
@media (max-width: 768px) {
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn-light {
        border-radius: 25px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .pagination .page-link {
        padding: 8px 12px;
        margin: 0 2px;
        font-size: 0.9rem;
    }
}

/* SSS Sayfası Özel Stiller */
.faq-section {
    background: var(--bg-section);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition-fast);
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    background: white;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-answer i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Contact CTA Section */
.contact-cta {
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta .btn-light {
    background: white;
    color: var(--accent-orange);
    border: 2px solid white;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.contact-cta .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Quick Contact Section */
.quick-contact {
    background: var(--bg-light);
}

.quick-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.quick-contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.quick-contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.quick-contact-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design for SSS Page */
@media (max-width: 768px) {
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider .carousel-control-next {
        right: 15px;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
    
    .accordion-button {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 0.8rem;
    }
    
    .quick-contact-card {
        padding: 1rem;
    }
    
    .contact-number {
        font-size: 1.1rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 1.5rem;
    margin-right: 10px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Service Cards Enhanced */
.service-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border: 1px solid rgba(243, 156, 18, 0.1);
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    color: #2c3e50 !important;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-gold) !important;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content h4 {
    color: #2c3e50 !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content p {
    color: #6c757d !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #6c757d !important;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--accent-gold) !important;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-content .btn {
    margin-top: auto;
    color: white !important;
}

/* Feature Cards Enhanced */
.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border: 1px solid rgba(243, 156, 18, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-card h5 {
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-top: 1rem;
    font-family: 'Oswald', sans-serif;
}

/* Contact Cards Enhanced */
.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
    border: 1px solid rgba(243, 156, 18, 0.1);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-gold);
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-card h5 {
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-detail {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.phone-link, .email-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-link:hover, .email-link:hover {
    color: var(--accent-orange);
}

.contact-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 2px solid var(--accent-gold);
}

.cta-title {
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Title Underline */
.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image img {
    box-shadow: var(--shadow-medium);
    border-radius: 15px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-alternate);
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 1px solid var(--bg-medium-gray);
    padding-top: 1rem;
}

.author-info h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Section Backgrounds */
.services-section {
    background: var(--bg-white);
}

.why-choose-us {
    background: var(--bg-alternate);
}

.contact-info {
    background: var(--bg-white);
}
