/* Sorumluluk Reddi ve Uyarı Metinleri */
.disclaimer {
    display: inline-block;
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 15px;
    border-radius: 4px;
    margin: 10px 0 20px;
    font-size: 0.9em;
    border-right: 4px solid #ffeeba;
}

.note {
    font-size: 0.85em;
    color: #6c757d;
    font-style: italic;
    margin: 10px 0 20px;
    padding: 8px 15px;
    background-color: #f8f9fa;
    border-right: 4px solid #e9ecef;
}

.disclaimer-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.disclaimer-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.disclaimer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclaimer-content h2 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
}

.disclaimer-content h3 {
    color: #2c5282;
    margin: 25px 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.disclaimer-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.disclaimer-content a {
    color: #2b6cb0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-content a:hover {
    color: #2c5282;
    text-decoration: underline;
}

.disclaimer-update {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #718096;
}

/* Breadcrumb Stilleri */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    display: inline-block;
    padding: 0 10px;
    color: #718096;
}

.breadcrumb-item a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #2b6cb0;
}

.breadcrumb-item.active {
    color: #2d3748;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Base Styles */
:root {
    --primary-color: #d62828;      /* Bright red for primary actions */
    --secondary-color: #780000;    /* Darker red for hover states */
    --accent-color: #f77f00;       /* Orange accent for highlights */
    --text-color: #000000;         /* Black for main text */
    --light-text: #333333;         /* Dark gray for secondary text */
    --light-bg: #ffffff;           /* White background */
    --white: #ffffff;              /* Pure white */
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-banner .btn {
    margin-top: 15px;
    padding: 10px 25px;
}

.contact-banner .working-hours {
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-banner .working-hours i {
    font-size: 16px;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    border: 2px solid #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    background-color: #ff3d3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-color: #fff;
    color: #fff !important;
}

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

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Large Button */
.btn-lg {
    padding: 18px 45px !important;
    font-size: 1.3rem !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4) !important;
    font-weight: 700 !important;
    border-width: 2px !important;
}

.btn-lg i {
    font-size: 1.2em !important;
    margin-right: 8px;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: #f0f4ff;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    padding: 0;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a365d;
    transition: all 0.3s ease;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 10px;
    margin-right: 12px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a365d;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: #4a5568;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.dropdown-menu a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    background-color: #f8fafc;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInOut 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 400;
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .hero-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .hero-icons {
        grid-template-columns: repeat(6, 1fr);
    }
}

.hero-icons .icon-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-icons .icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-icons i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icons span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #d62828, #e74c3c, #f77f00);
}

.services .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 15px;
}

.services .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d62828, #e74c3c);
    transition: height 0.3s ease;
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 20px;
    font-size: 2.5rem;
    color: #d62828;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.2);
}

.service-card h3 {
    margin-bottom: 20px;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #d62828;
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #4b5563;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-link {
    color: #b31e1e;
}

.service-card:hover .btn-link i {
    transform: translateX(5px);
}

/* About Page Styles */
.about-text {
    margin-bottom: 40px;
}

.independent-service {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-right: 4px solid var(--accent-color);
}

.independent-service i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.independent-service p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mission, .vision {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission i, .vision i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission h3, .vision h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.mission p, .vision p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

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

/* Contact Banner */
.contact-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    margin: 1rem 0;
    opacity: 0.8;
    line-height: 1.7;
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.pricing-header {
    padding: 25px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0 0;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-body {
    padding: 25px;
}

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

.pricing-body li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
}

.pricing-body li:before {
    content: '✓';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-notes {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.note-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-right: 3px solid var(--accent-color);
}

.note-box i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.note-box p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Pricing Details Styles */
.pricing-details {
    margin: 15px 0 20px 20px;
    padding: 0;
    list-style: none;
}

.pricing-details li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 10px;
    line-height: 1.5;
    border-bottom: 1px dashed #eee;
}

.pricing-details li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1.4;
}

.pricing-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-right: 3px solid var(--accent-color);
    margin-top: 15px;
    border-radius: 0 4px 4px 0;
}

/* FAQ Item Styling */
.faq-answer {
    padding: 15px 0;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 4px;
}

/* Font Awesome Icons */
.fas, .far, .fab {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Hero Icons */
.hero-icons .icon-item {
    text-align: center;
    padding: 15px;
    transition: var(--transition);
}

.hero-icons .icon-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    display: block;
}

.hero-icons .icon-item span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

/* Service Icons */
.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.contact-info a {
    color: #cbd5e1;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Modern Call Button */
.fixed-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.fixed-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.fixed-call-btn i {
    font-size: 1.1em;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.fixed-call-btn .call-text {
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.2;
}

.fixed-call-btn:hover i {
    transform: rotate(10deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-call-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
    }
    
    .fixed-call-btn .call-text {
        display: none;
    }
    
    .fixed-call-btn i {
        margin-right: 0;
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Responsive Pricing Section */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .pricing-notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0 10px 20px;
    }
    
    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-icons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 16px;
    }
    
    .fixed-call-btn {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
    
    .fixed-call-btn i {
        font-size: 1.25rem;
    }
    
    .fixed-call-btn span {
        display: none;
    }
}
