/* Sungurlu Taksi Custom CSS */

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.logo-icon span {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.logo-text .site-title {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.logo-text .site-title a {
    color: inherit;
}

.logo-text .site-tagline {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.main-navigation {
    display: none;
}

.main-navigation .nav-menu {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .nav-menu li a {
    display: block;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li.current-menu-item a {
    background: #facc15;
    color: #000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    background: #facc15;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-phone:hover {
    background: #eab308;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: block;
    padding: 8px;
    color: #000;
}

.mobile-navigation {
    display: none;
    padding-bottom: 16px;
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation .mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation .mobile-menu li a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-navigation .mobile-menu li a:hover,
.mobile-navigation .mobile-menu li.current-menu-item a {
    background: #facc15;
    color: #000;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #facc15;
    color: #000;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .main-navigation {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .logo-text {
        display: block;
    }
}

@media (min-width: 1024px) {
    .header-phone {
        display: flex;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    background: #111827;
    overflow: hidden;
    margin-top: 80px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-btn.prev {
    left: 16px;
}

.slider-btn.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.slider-dots .dot.active {
    width: 32px;
    background: #facc15;
    border-radius: 6px;
}

@media (min-width: 640px) {
    .hero-slider {
        height: 600px;
    }
}

@media (min-width: 768px) {
    .hero-slider {
        height: 700px;
    }
}

@media (min-width: 1024px) {
    .hero-slider {
        height: 800px;
    }
}

/* Metrics Section */
.metrics-section {
    background: #fff;
    padding: 48px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.metric-item {
    text-align: center;
}

.metric-number {
    font-size: 36px;
    font-weight: bold;
    color: #facc15;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

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

    .metric-number {
        font-size: 48px;
    }

    .metric-label {
        font-size: 16px;
    }
}

/* Content Section */
.content-section {
    background: #f9fafb;
    padding: 48px 0;
}

.content-wrapper {
    max-width: 896px;
    margin: 0 auto;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
}

.main-content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .main-title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .content-section {
        padding: 64px 0;
    }

    .main-title {
        font-size: 36px;
    }

    .main-content p {
        font-size: 18px;
    }
}

/* Promo Section */
.promo-section {
    background: #fff;
    padding: 48px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.promo-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.promo-content p {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #facc15;
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #eab308;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.promo-image {
    order: -1;
}

.promo-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .promo-section {
        padding: 64px 0;
    }

    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .promo-content h2 {
        font-size: 30px;
    }

    .promo-content p {
        font-size: 18px;
    }

    .promo-image {
        order: 1;
    }

    .promo-image img {
        aspect-ratio: 1/1;
    }

    .cta-button {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .promo-content h2 {
        font-size: 36px;
    }
}

/* Gallery Preview Section */
.gallery-preview {
    background: #f9fafb;
    padding: 64px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #4b5563;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

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

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

.section-cta {
    text-align: center;
}

.view-all-button {
    display: inline-block;
    background: #facc15;
    color: #000;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.view-all-button:hover {
    background: #eab308;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

    .section-header h2 {
        font-size: 36px;
    }
}

/* Map Section */
.map-section {
    background: #fff;
    padding: 64px 0;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gallery Page */
.page-header {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.8);
}

.gallery-full {
    background: #f9fafb;
    padding: 64px 0;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item-full {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item-full:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gallery-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

@media (min-width: 640px) {
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 48px;
    }
}

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

@media (min-width: 1024px) {
    .gallery-grid-full {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-header h1 {
        font-size: 60px;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

/* Why Us Page */
.why-us-content {
    background: #f9fafb;
    padding: 64px 0;
}

.why-us-sections {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
}

.why-us-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-us-card h2 {
    font-size: 20px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
    border-left: 4px solid #facc15;
    padding-left: 16px;
}

.why-us-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.75;
}

.cta-box {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 32px;
}

.cta-phone {
    display: inline-block;
    background: #000;
    color: #facc15;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-phone:hover {
    background: #1f2937;
}

@media (min-width: 768px) {
    .why-us-card {
        padding: 32px;
    }

    .why-us-card h2 {
        font-size: 24px;
    }

    .why-us-card p {
        font-size: 18px;
    }

    .cta-box {
        padding: 64px 48px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box p {
        font-size: 18px;
    }

    .cta-phone {
        font-size: 20px;
    }
}

/* Contact Page */
.contact-content {
    background: #f9fafb;
    padding: 64px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 24px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    color: #000;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 16px;
    color: #4b5563;
}

.contact-details a {
    color: #facc15;
    font-weight: 600;
}

.contact-details a:hover {
    color: #eab308;
}

.cta-button-wrapper {
    margin-top: 32px;
}

.contact-map {
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

    .contact-map {
        min-height: 600px;
    }
}

/* Footer Styles */
.site-footer {
    background: #111827;
    color: #fff;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #facc15;
}

.footer-section p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.75;
}

.footer-section a {
    color: #facc15;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #eab308;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #facc15;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    animation: pulse-ring 2s infinite;
}

.fixed-call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.fixed-call-button svg {
    color: #fff;
    width: 28px;
    height: 28px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7),
                    0 10px 30px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0),
                    0 10px 30px rgba(16, 185, 129, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0),
                    0 10px 30px rgba(16, 185, 129, 0.4);
    }
}

@media (min-width: 768px) {
    .fixed-call-button {
        width: 72px;
        height: 72px;
    }

    .fixed-call-button svg {
        width: 32px;
        height: 32px;
    }
}

/* Utility Classes */
.pt-20 {
    padding-top: 80px;
}

.min-h-screen {
    min-height: 100vh;
}
