/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #C41E3A;
    --secondary-color: #E63946;
    --accent-color: #FF6B6B;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #2b2b2b;
    --border-color: #d4d4d4;
    --success-color: #27ae60;
    --silver-color: #b8b8b8;
    --metallic-gray: #5a5a5a;
    --charcoal-gray: #424242;
    --medium-gray: #757575;
    --steel-gray: #616161;
    --shadow: 0 4px 6px rgba(196,30,58,0.15);
    --shadow-lg: 0 10px 30px rgba(196,30,58,0.25);
    --red-gradient: linear-gradient(135deg, #C41E3A 0%, #E63946 50%, #FF6B6B 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    --gray-gradient: linear-gradient(135deg, #424242 0%, #616161 50%, #757575 100%);
    --metallic-gradient: linear-gradient(135deg, #b8b8b8 0%, #e0e0e0 50%, #b8b8b8 100%);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--red-gradient);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-text {
    font-weight: 500;
}

.top-bar-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.top-bar-phone:hover {
    color: var(--silver-color);
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.top-bar-phone i {
    margin-right: 8px;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(196,30,58,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Mobil için boyut */
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

/* Desktop için logo boyutu */
@media (min-width: 992px) {
    .logo-img {
        height: 100px;
    }
    
    .navbar {
        padding: 20px 0;
    }
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red-gradient);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.btn-teklif {
    background: var(--red-gradient);
    color: white !important;
    border-radius: 25px;
    padding: 8px 24px !important;
    box-shadow: 0 4px 15px rgba(196,30,58,0.3);
}

.btn-teklif:hover {
    background: var(--dark-gradient);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,30,58,0.4);
}

.btn-teklif::after {
    display: none;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--charcoal-gray);
    color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a" width="1200" height="600"/><path fill="%23C41E3A" opacity="0.1" d="M0 300L50 283.3C100 266.7 200 233.3 300 225C400 216.7 500 233.3 600 241.7C700 250 800 250 900 241.7C1000 233.3 1100 216.7 1150 208.3L1200 200V600H1150C1100 600 1000 600 900 600C800 600 700 600 600 600C500 600 400 600 300 600C200 600 100 600 50 600H0V300Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    padding: 100px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-highlight {
    color: var(--silver-color);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-buttons .btn-primary {
    background: var(--gray-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: var(--dark-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 66, 66, 0.6);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-item i {
    font-size: 24px;
    color: var(--silver-color);
}

.hero-feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-section .container {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.stats-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--red-gradient);
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--border-color);
    transform: translateY(-50%);
}

.stat-item:last-child::after,
.col-6:nth-child(2n) .stat-item::after {
    display: none;
}

@media (max-width: 767px) {
    .stat-item::after {
        display: none;
    }
}

.stat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* ===== SECTION COMMON STYLES ===== */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background: var(--red-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    max-width: 700px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--light-color);
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-image-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 250px;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.about-image-item:hover img {
    transform: scale(1.1);
}

.about-image-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-image-item .overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(196,30,58,0.95), transparent);
    color: white;
    padding: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.about-image-item i {
    color: var(--charcoal-gray);
    margin-bottom: 15px;
}

.about-image-item p {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.about-img-3 {
    grid-column: 1 / -1;
}

/* ===== FEATURES SHOWCASE SECTION ===== */
.features-showcase-section {
    background: white;
    padding: 80px 0;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.feature-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.feature-image-wrapper:hover img {
    transform: scale(1.05);
}

.feature-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.4);
}

.feature-badge i {
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-check-list {
    list-style: none;
    padding: 0;
}

.feature-check-list li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.feature-check-list i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.3rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card {
    padding: 0;
}

.service-card > div:not(.service-image),
.service-card > h3,
.service-card > p,
.service-card > ul,
.service-card > a {
    padding-left: 30px;
    padding-right: 30px;
}

.service-card > div:first-child:not(.service-image) {
    padding-top: 40px;
}

.service-card > a {
    padding-bottom: 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--charcoal-gray);
}

.service-card.featured {
    background: var(--red-gradient);
    color: white;
    border-color: var(--silver-color);
}

.featured-badge {
    background: var(--dark-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 15px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--red-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: -40px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    position: relative;
    z-index: 10;
}

.service-card.featured .service-icon {
    background: white;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card.featured .service-icon i {
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card.featured .service-title {
    color: white;
}

.service-description {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.service-card.featured .service-features i {
    color: var(--silver-color);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--light-color);
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--charcoal-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.3);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    padding: 0 25px;
}

.product-card p {
    color: var(--text-color);
    margin: 0;
    padding: 0 25px 35px;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    background: white;
}

.why-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.why-image-wrapper:hover img {
    transform: scale(1.1);
}

.why-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(196,30,58,0.95), transparent);
    padding: 30px;
    color: white;
}

.why-image-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-image-overlay p {
    margin: 0;
    font-size: 1rem;
}

.why-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.5s;
    z-index: 0;
}

.why-card:hover::before {
    left: 0;
}

.why-card:hover {
    transform: translateY(-10px);
    color: white;
}

.why-card:hover h4,
.why-card:hover p {
    color: white;
}

.why-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(66, 66, 66, 0.1);
    z-index: 1;
    transition: all 0.5s;
}

.why-card:hover .why-number {
    color: rgba(255, 255, 255, 0.2);
}

.why-icon {
    font-size: 3rem;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.why-card:hover .why-icon {
    color: white;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.why-card p {
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: white;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(196,30,58,0.95), rgba(196,30,58,0.3));
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 30px;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    background: var(--light-color);
    padding: 60px 0;
}

.brand-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.brand-placeholder {
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s;
}

.brand-placeholder i {
    font-size: 3rem;
    color: var(--charcoal-gray);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-item:hover .brand-placeholder {
    opacity: 1;
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: var(--red-gradient);
    color: white;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info .lead {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--silver-color);
    margin-right: 15px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.benefit-item span {
    font-size: 1.1rem;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--charcoal-gray);
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.15);
}

.contact-form-card .btn-primary {
    background: var(--gray-gradient);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(66, 66, 66, 0.3);
}

.contact-form-card .btn-primary:hover {
    background: var(--dark-gradient);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 66, 66, 0.5);
}

.form-check-label {
    color: var(--text-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--light-color);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--charcoal-gray);
    box-shadow: 0 4px 10px rgba(66, 66, 66, 0.3);
}

.testimonial-stars {
    color: var(--accent-color);
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark-color);
    color: white;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9e9e9e;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #b8b8b8;
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--red-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-gradient);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-3 {
        grid-column: 1;
    }
}

@media (max-width: 767px) {
    .logo-img {
        height: 40px;
    }
    
    .brand-text {
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .stats-section .container {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6 {
        margin-bottom: 5px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== UTILITIES ===== */
.btn {
    transition: all 0.3s;
}

.btn:focus,
.btn:active:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.25);
}

/* ===== BOOTSTRAP BTN-PRIMARY OVERRIDE ===== */
.btn-primary {
    background: var(--gray-gradient);
    border: none;
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--dark-gradient);
    border: none;
    color: white;
}

.btn-outline-primary {
    border-color: var(--charcoal-gray);
    color: var(--charcoal-gray);
}

.btn-outline-primary:hover {
    background: var(--charcoal-gray);
    border-color: var(--charcoal-gray);
    color: white;
}

/* ===== SERVICE PAGES ===== */
.service-hero {
    background-size: cover !important;
    background-position: center !important;
    min-height: 500px;
    padding: 100px 0 60px;
    position: relative;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.service-hero-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.8;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* Quick Info Cards */
.quick-info-section {
    background: white;
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quick-info-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-info-item i {
    font-size: 2.5rem;
    color: var(--charcoal-gray);
    margin-bottom: 15px;
}

.quick-info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.quick-info-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Content Section */
.service-content-section {
    padding: 60px 0;
    background: var(--light-color);
}

.content-block {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
    box-shadow: var(--shadow);
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-block h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.content-block .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.content-block p {
    line-height: 1.8;
    color: var(--text-color);
}

.feature-list-detailed {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list-detailed li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.feature-list-detailed li:last-child {
    border-bottom: none;
}

.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
}

.icon-list i {
    color: var(--success-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.2rem;
}

.camera-types {
    margin-top: 20px;
}

.camera-type-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--charcoal-gray);
}

.camera-type-item h5 {
    color: var(--charcoal-gray);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.camera-type-item i {
    margin-right: 8px;
}

.camera-type-item p {
    margin: 0;
    color: var(--text-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    margin: 20px 0;
}

.comparison-table th {
    background: var(--charcoal-gray);
    color: white;
    padding: 12px;
    font-weight: 600;
}

.comparison-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.package-item {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
    position: relative;
}

.package-item:hover {
    border-color: var(--charcoal-gray);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.package-item.featured {
    background: var(--gray-gradient);
    color: white;
    border-color: var(--charcoal-gray);
}

.package-item.featured h5,
.package-item.featured p {
    color: white;
}

.package-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.package-item p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.package-item .badge {
    position: absolute;
    top: -10px;
    right: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
}

.service-list a {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.service-list a:hover {
    color: var(--charcoal-gray);
    padding-left: 5px;
}

.service-list i {
    color: var(--charcoal-gray);
    margin-right: 10px;
    font-size: 0.8rem;
}

.cta-widget {
    background: var(--gray-gradient);
    color: white;
}

.cta-widget h4,
.cta-widget p {
    color: white;
}

.cta-widget .btn {
    width: 100%;
}

/* Features Grid */
.features-grid-section {
    background: white;
    padding: 60px 0;
}

.feature-box {
    background: var(--light-color);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-box:hover {
    background: var(--charcoal-gray);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-box i {
    font-size: 3rem;
    color: var(--charcoal-gray);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-box:hover i {
    color: white;
}

.feature-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    transition: all 0.3s;
}

.feature-box:hover h5 {
    color: white;
}

.feature-box p {
    margin: 0;
    color: var(--text-color);
    transition: all 0.3s;
}

.feature-box:hover p {
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 80px 0;
    position: relative;
}

.cta-section .text-white ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.cta-section .text-white ul li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.cta-section .text-white ul i {
    margin-right: 12px;
    color: var(--silver-color);
}

/* Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 18px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--charcoal-gray);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    line-height: 1.8;
    background: white;
}

/* Responsive Service Pages */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 2.2rem;
    }

    .service-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .service-hero {
        min-height: 400px;
        padding: 80px 0 40px;
    }

    .service-hero-title {
        font-size: 1.8rem;
    }

    .service-hero-description {
        font-size: 1rem;
    }

    .content-block {
        padding: 25px 20px;
    }

    .content-block h2 {
        font-size: 1.6rem;
    }

    .content-block h3 {
        font-size: 1.3rem;
    }

    .quick-info-item {
        margin-bottom: 15px;
    }
}