/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 55px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?w=1600') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Services */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #e8eef3 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    font-size: 1.05rem;
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.15rem;
    color: #555;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

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

.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    z-index: 0;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .section-header {
    margin-bottom: 5rem;
}

.pricing .section-header h2 {
    color: var(--white);
}

.pricing .section-header h2::after {
    background: linear-gradient(90deg, var(--white), var(--light-color));
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 5rem;
    margin-top: 3rem;
}

.pricing-category {
    background: var(--white);
    padding: 3.5rem 3rem 3rem 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: none;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.pricing-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.pricing-category:hover {
    /* Hover efekti kaldırıldı */
}

.category-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.category-badge.special {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.category-subtitle {
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.card-ribbon {
    position: absolute;
    top: 15px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.card-ribbon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-top: 6px solid #1a1a1a;
}

.card-ribbon.featured {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
}

.card-ribbon.featured::after {
    border-top-color: #8b2e1f;
    border-left: 6px solid transparent;
    border-top: 6px solid #8b2e1f;
}

.card-ribbon.premium {
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
}

.card-ribbon.premium::after {
    border-top-color: #b8651a;
    border-left: 6px solid transparent;
    border-top: 6px solid #b8651a;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 2rem 0;
}

.price-period {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.price-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features i {
    color: #27ae60;
    font-size: 1.1rem;
}

.price-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.3);
}

.pricing-note {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-left: 5px solid var(--accent-color);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.pricing-note p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.category-header i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.category-header h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-grid.special {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}

.price-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: none;
    border: 3px solid transparent;
    position: relative;
    overflow: visible;
}

.price-card::before {
    /* Animasyon kaldırıldı */
}

.price-card:hover {
    /* Hover efekti kaldırıldı */
}

.price-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 2rem 0;
    position: relative;
}

.price-card .price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.price-desc {
    color: #666;
    font-size: 1rem;
    margin: 1rem 0;
    font-style: italic;
    font-weight: 500;
}

.price-card .btn {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Special Pricing */
.special-pricing {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.category-header.special {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.category-header.special i {
    color: var(--accent-color);
}

.category-header.special h3 {
    color: var(--white);
}

.price-card.special {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.special-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-color), #e67e22);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

.price-desc {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Contact */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

.contact-grid {
    margin-bottom: 4rem;
}

.contact-info-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-color);
}

.contact-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-intro p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e8eef3;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-details {
    text-align: center;
}

.contact-details h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.phone-number a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin: 1rem 0;
}

.phone-number a:hover {
    color: var(--primary-dark);
}

.contact-person {
    color: var(--secondary-color) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin-top: 1rem !important;
}

.contact-person i {
    color: var(--primary-color);
    margin-right: 5px;
}

.contact-note {
    color: #999 !important;
    font-size: 0.9rem !important;
    font-style: italic;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.working-hours {
    list-style: none;
    padding: 0;
    text-align: left;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e8eef3;
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours span {
    color: #666;
}

.working-hours strong {
    color: var(--primary-color);
    font-weight: 700;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.trust-badges span {
    background: #e8f5e9;
    color: #27ae60;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badges i {
    font-size: 1rem;
}

.map-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.map-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--light-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    text-align: center;
}

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

.footer-content .logo {
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-content p {
    color: #bbb;
    font-size: 1.1rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(225,48,108,0.5);
}

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

.footer-bottom p {
    color: #999;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .pricing-category {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 70px;
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image::before {
        display: none;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-category {
        padding: 2rem 1.5rem;
    }

    .category-header h3 {
        font-size: 1.6rem;
    }

    .category-header i {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-card {
        padding: 2rem 1.5rem;
    }

    .price-card h4 {
        font-size: 1.3rem;
    }

    .price-card .price {
        font-size: 2.2rem;
    }

    .contact-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-wrapper {
        padding: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-card i {
        font-size: 3.5rem;
    }

    .footer-content .logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }

    .category-header i {
        font-size: 2rem;
    }

    .price-card .price {
        font-size: 1.8rem;
    }

    .price-card h4 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card i {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .contact-box h3 {
        font-size: 1.4rem;
    }

    .contact-box i {
        font-size: 2.5rem;
    }

    .contact-box p {
        font-size: 1rem;
    }

    .contact-box a {
        font-size: 1.1rem;
    }

    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .pricing-category {
        padding: 1.5rem 1rem;
    }

    .price-card {
        padding: 1.5rem 1rem;
    }

    .price-desc {
        font-size: 0.9rem;
    }
}

/* Pric
ing Simple */
.pricing-simple {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.pricing-simple .section-header h2 {
    color: var(--secondary-color);
}

.pricing-simple .section-header h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

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

.pricing-option {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.option-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(231,76,60,0.3);
}

.option-icon i {
    font-size: 3rem;
    color: var(--white);
}

.pricing-option h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-option > p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.option-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.option-features li:last-child {
    border-bottom: none;
}

.option-features i {
    color: #27ae60;
    font-size: 1.2rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .pricing-options {
        grid-template-columns: 1fr;
    }
}


/* Pricing Detailed */
.pricing-detailed {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef3 100%);
}

.pricing-detailed .section-header h2 {
    color: var(--secondary-color);
}

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

.pricing-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.table-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.table-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.table-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.price-rows {
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #f8f9fa;
}

.price-row.featured {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe8cc 100%);
    border-left: 4px solid var(--primary-color);
}

.price-row.featured:hover {
    background: linear-gradient(135deg, #ffe8cc 0%, #ffd699 100%);
}

.row-left {
    flex: 1;
}

.row-left h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.row-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0.3rem 0 0 0;
}

.row-left .badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.row-right {
    text-align: right;
}

.row-right .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
}

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

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 40px;
}

.info-box h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-tables {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .row-right {
        text-align: left;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
}
