/* =====================================================
   DYNOBIL ABİDİNPAŞA OTO EKSPERTİZ - STYLE
   Modern, Responsive Landing Page CSS
   ===================================================== */

/* CSS Variables */
:root {
    --primary-color: #f26422;
    --primary-dark: #d9551a;
    --primary-light: #ff7b3d;
    --secondary-color: #4a4a4a;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 42px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.header.scrolled .logo img {
    filter: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .nav-link {
    color: var(--text-color);
    text-shadow: none;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Hide mobile-only nav elements on desktop */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--dark-color);
}

/* Mobile menu button always dark when menu is open */
.mobile-menu-btn.active span {
    background: var(--dark-color);
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* =====================================================
   HERO SECTION - COMPACT VIDEO
   ===================================================== */
.hero {
    position: relative;
    margin-top: 0;
    padding: 0;
    background: var(--white);
}

.hero-video-wrapper {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 20px;
    height: 850px;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
section {
    padding: 80px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(242, 100, 34, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Swiper Navigation - Hidden on desktop */
.swiper-nav {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 100, 34, 0.4);
}

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

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

/* =====================================================
   PRICING SECTION
   ===================================================== */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px 20px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.price .amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-features {
    margin-bottom: 15px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.4;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2.5;
    margin-top: 1px;
}

/* Pricing Accordion */
.pricing-accordion {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}

.accordion-toggle:hover {
    background: rgba(242, 100, 34, 0.1);
    color: var(--primary-color);
}

.accordion-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
}

.accordion-toggle.active svg {
    transform: rotate(180deg);
}

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

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

.accordion-content .detail-group {
    padding: 12px 15px;
    border-top: 1px solid var(--border-color);
}

.accordion-content .detail-group:first-child {
    border-top: none;
}

.accordion-content .detail-group strong {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.accordion-content .detail-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-content .detail-group ul li {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
}

.accordion-content .detail-group ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Extra Packages */
.extra-packages {
    margin-top: 60px;
}

.extra-packages > h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.extra-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.extra-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.extra-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.extra-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.extra-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Detay Butonu */
.btn-details {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    background: transparent;
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-details:hover {
    background: rgba(242, 100, 34, 0.1);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal-header {
    padding: 25px 50px 20px 25px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-price {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
}

.modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.modal-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    list-style: none;
}

.modal-section ul li {
    font-size: 0.85rem;
    color: var(--text-color);
    padding-left: 18px;
    position: relative;
    word-break: break-word;
}

.modal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    flex-shrink: 0;
}

.modal-footer .btn {
    min-width: 200px;
}

.extra-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.extra-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: rgba(242, 100, 34, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-us {
    background: var(--white);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
}

.why-us-text > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.features-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.features-list li div strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.features-list li div span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Why Us Stats */
.why-us-stats {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.stat-box {
    background: var(--light-bg);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery {
    background: var(--light-bg);
    padding: 70px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
    background: var(--light-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:first-child {
    padding-top: 5px;
    border-top: 1px solid var(--border-color);
}

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

.faq-answer strong {
    color: var(--dark-color);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 100, 34, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.contact-text span,
.contact-text a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 38px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 22px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact a {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--primary-light);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* =====================================================
   FLOATING BUTTONS
   ===================================================== */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1500;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

.phone-btn {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: #25d366;
}

.directions-btn {
    background: #4285f4;
}

.float-tooltip {
    position: absolute;
    right: 65px;
    background: var(--dark-color);
    color: var(--white);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--dark-color);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Pulse Animation for Phone Button */
.phone-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

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

    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-content {
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
    }

    .nav.active {
        right: 0;
    }

    /* Mobile Nav Header with Logo */
    .mobile-nav-header {
        display: flex;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav-logo img {
        height: 40px;
        width: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 15px 25px;
        flex: 1;
    }

    .nav-link {
        display: block;
        font-size: 1rem;
        color: var(--text-color);
        text-shadow: none;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
    }

    /* Mobile Nav Footer with Contact */
    .mobile-nav-footer {
        display: block;
        padding: 20px 25px;
        border-top: 1px solid var(--border-color);
        background: var(--light-bg);
    }

    .mobile-nav-contact {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.6;
    }

    .mobile-nav-contact p {
        margin: 0 0 4px;
    }

    .mobile-nav-contact strong {
        color: var(--dark-color);
        font-weight: 600;
    }

    .mobile-nav-contact a {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 10px;
        border-radius: 50%;
    }

    /* Mobile menu overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-stats {
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1 1 calc(50% - 10px);
    }

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

    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        margin-top: 0;
        padding: 0;
    }

    .hero-video-wrapper {
        width: calc(100% - 30px);
        margin: 0 15px;
        height: 450px;
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    }

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

    /* Swiper Navigation - Mobile Only */
    .swiper-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
    }

    .swiper-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--border-color);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        color: var(--text-color);
    }

    .swiper-nav-btn:hover,
    .swiper-nav-btn:active {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: rgba(242, 100, 34, 0.05);
    }

    .swiper-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Pricing Cards - Horizontal Scroll */
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 15px 20px 25px;
        margin: 0 -20px;
        scroll-padding-left: 20px;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .pricing-card {
        flex: 0 0 calc(100vw - 60px);
        max-width: 320px;
        scroll-snap-align: center;
    }

    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .extra-card {
        padding: 15px 10px;
    }

    .extra-price {
        font-size: 1rem;
    }

    .extra-card h4 {
        font-size: 0.75rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item img {
        height: 140px;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 15px 18px;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 18px;
        font-size: 0.85rem;
    }

    .why-us-text h2,
    .contact-info h2 {
        font-size: 1.7rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .floating-buttons {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }

    .float-tooltip {
        display: none;
    }

    /* Modal Mobile */
    .modal-overlay {
        padding: 15px;
    }

    .modal-content {
        max-height: 90vh;
        border-radius: var(--border-radius);
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }

    .modal-header {
        padding: 20px 45px 15px 20px;
    }

    .modal-header h3 {
        font-size: 1.1rem;
    }

    .modal-body {
        padding: 15px 20px;
    }

    .modal-section h4 {
        font-size: 0.9rem;
    }

    .modal-section ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .modal-section ul li {
        font-size: 0.8rem;
    }

    .modal-footer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-video-wrapper {
        width: 100%;
        margin: 0;
        height: 280px;
        border-radius: 0;
    }

    .logo img {
        height: 35px;
    }

    .pricing-card {
        padding: 25px 18px;
    }

    .price .amount {
        font-size: 1.9rem;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

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

    .gallery-item img {
        height: 180px;
    }
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
