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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: 80px;
    padding: 5px 0;
}

.navbar {
    padding: 15px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    max-width: 1200px;
}

.logo-item {
    display: flex;
    align-items: center;
    margin-right: 0;
    flex-shrink: 0;
    padding: 5px 0;
}

.nav-logo-img {
    height: 55px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.social-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 0;
    flex-shrink: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1px 2px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    position: relative;
    margin-right: 3px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
}

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

.nav-menu a.nav-btn {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9rem;
    position: relative;
    margin-right: 3px;
    box-shadow: 0 2px 8px rgba(255,68,68,0.3);
    border: 2px solid transparent;
}

.nav-menu a.nav-btn:hover {
    background: linear-gradient(45deg, #cc0000, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,68,68,0.4);
    border-color: rgba(255,255,255,0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255,255,255,0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 80vh;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ff4444;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff4444;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out 0.3s both;
}

.hero-location {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    animation: fadeInDown 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.2rem;
    margin: 30px 0;
    line-height: 1.8;
    color: #ccc;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255,68,68,0.8);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff4444;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff4444;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-location {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .slider-controls {
        bottom: 15px;
        gap: 10px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,68,68,0.4);
    background: linear-gradient(45deg, #cc0000, #ff4444);
}

.btn-secondary {
    background: linear-gradient(45deg, #333333, #1a1a1a);
    color: white;
    box-shadow: 0 4px 15px rgba(51,51,51,0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51,51,51,0.4);
    background: linear-gradient(45deg, #1a1a1a, #333333);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 40px 0;
    background: #f8f8f8;
}

/* Desktop Grid View */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

/* Mobile Accordion View */
.services-accordion {
    margin-top: 50px;
}

.service-accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-accordion-item.active {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255,68,68,0.2);
}

.service-accordion-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.service-accordion-header:hover {
    background: #f0f0f0;
}

.service-accordion-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.service-accordion-header i.fa-chevron-down {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1rem;
    margin-left: 10px;
}

.service-accordion-item.active .service-accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.service-accordion-item.active .service-accordion-content {
    max-height: 200px;
}

.service-accordion-content p {
    padding: 20px 25px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .service-accordion-header {
        padding: 15px 20px;
    }
    
    .service-accordion-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    .service-accordion-header h3 {
        font-size: 1rem;
    }
    
    .service-accordion-content p {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-accordion-header {
        padding: 12px 15px;
    }
    
    .service-accordion-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .service-accordion-header h3 {
        font-size: 0.95rem;
    }
    
    .service-accordion-content p {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Point System */
.point-system {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/trabzon-oto-ekspertiz.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.point-system .section-title {
    color: white;
}

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

.point-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(255,68,68,0.1);
    border-color: #ff4444;
}

.point-number {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* News Section Styles */
.news-section {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 5px solid #ff4444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.news-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 2px;
}

.news-content {
    color: #333;
    line-height: 1.8;
}

.news-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
}

.news-content strong {
    color: #ff4444;
    font-weight: 600;
}

.news-content em {
    color: #666;
    font-style: italic;
    background: rgba(255,68,68,0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.news-source {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.news-source small {
    color: #888;
    font-size: 0.9rem;
}

.news-source a {
    color: #ff4444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-source a:hover {
    color: #cc0000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-section {
        padding: 20px;
        margin-top: 30px;
    }
    
    .news-title {
        font-size: 1.3rem;
    }
    
    .news-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 15px;
        margin-top: 25px;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-content p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 4px solid #ff4444;
}

.contact-item i {
    color: #ff4444;
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.map-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

.contact-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #cc0000;
    text-decoration: underline;
    transform: translateY(-1px);
}

.contact-map {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff4444;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-link {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Phone Float Button */
.phone-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.phone-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(255,68,68,0.3);
    transition: all 0.3s ease;
    animation: pulse-phone 2s infinite;
}

.phone-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255,68,68,0.4);
    background: #cc0000;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@keyframes pulse-phone {
    0% {
        box-shadow: 0 0 0 0 rgba(255,68,68,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255,68,68,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,68,68,0);
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f8f8;
}

.pricing-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 2px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.accordion-item.featured {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255,68,68,0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.accordion-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4444;
    margin: 0;
}

.accordion-header i {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.package-features {
    list-style: none;
    padding: 20px 25px;
    margin: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

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

/* SSS Section */
.sss {
    padding: 80px 0;
    background: white;
}

.sss-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.sss-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sss-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.sss-item.active {
    border-color: #ff4444;
    box-shadow: 0 5px 20px rgba(255,68,68,0.2);
}

.sss-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.sss-header:hover {
    background: #f0f0f0;
}

.sss-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.sss-header i {
    color: #666;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    margin-left: 15px;
}

.sss-item.active .sss-header i {
    transform: rotate(180deg);
}

.sss-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.sss-item.active .sss-content {
    max-height: 800px;
}

.sss-content p {
    padding: 20px 30px 10px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.sss-content ul {
    padding: 20px 30px 10px;
    margin: 0;
    list-style: none;
}

.sss-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.sss-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 1.5rem;
}

.sss-content ul li:last-child {
    border-bottom: none;
}

.sss-content .btn {
    margin: 15px 30px 20px;
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
}

/* Desktop Grid Layout */
@media (min-width: 1024px) {
    .accordion {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
        max-width: none;
    }
    
    .accordion-item {
        margin-bottom: 0;
    }
    
    .accordion-content {
        max-height: none;
        overflow: visible;
    }
    
    .accordion-header {
        cursor: default;
    }
    
    .accordion-header:hover {
        background: #f8f8f8;
    }
    
    .accordion-header i {
        display: none;
    }
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h4 {
        font-size: 1.1rem;
    }
    
    .accordion-header .price {
        font-size: 1.5rem;
    }
    
    .package-features {
        padding: 15px 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 60px 0;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-header h4 {
        font-size: 1rem;
    }
    
    .accordion-header .price {
        font-size: 1.3rem;
    }
    
    .package-features {
        padding: 12px 15px;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 80px;
        overflow: visible;
    }
    
    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        background: #1a1a1a !important;
        padding: 20px !important;
        gap: 15px !important;
        z-index: 9999 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-100%) !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu li {
        width: 100% !important;
        text-align: center !important;
        list-style: none !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 15px 20px !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        color: white !important;
        text-decoration: none !important;
    }
    
    .nav-menu a:hover {
        background: rgba(255,68,68,0.15) !important;
        color: #ff4444 !important;
    }
    
    .logo-item {
        margin-right: 0 !important;
        margin-bottom: 10px !important;
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        order: -1 !important;
    }
    
    .social-item {
        margin-left: 0 !important;
        margin-top: 10px !important;
        justify-content: center !important;
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        order: 999 !important;
    }
    
    .nav-logo-img {
        height: 35px !important;
    }
    
    .logo-item span {
        font-size: 1rem !important;
    }
    
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 10000 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 30px !important;
        height: 30px !important;
        cursor: pointer !important;
        background: rgba(255,255,255,0.1) !important;
        border-radius: 5px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-location {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .point-item {
        flex-direction: column;
        text-align: center;
    }
} 

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-item p {
        font-size: 1rem;
    }
    
    .contact-map {
        padding: 15px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
} 

/* Responsive Design for SSS */
@media (max-width: 768px) {
    .sss-header {
        padding: 20px 25px;
    }
    
    .sss-header h3 {
        font-size: 1.1rem;
    }
    
    .sss-content p,
    .sss-content ul li {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .sss-content {
        padding: 15px 25px;
    }
    
    .sss-content .btn {
        margin: 15px 0 20px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sss {
        padding: 60px 0;
    }
    
    .sss-header {
        padding: 15px 20px;
    }
    
    .sss-header h3 {
        font-size: 1rem;
    }
    
    .sss-content p,
    .sss-content ul li {
        font-size: 0.95rem;
    }
} 

/* Desktop Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    cursor: pointer;
}

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

.service-card::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff4444, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3c72;
} 

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 15px;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
} 

/* Animasyon keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.hero-title:hover,
.hero-subtitle:hover {
    animation: pulse 0.6s ease-in-out;
} 