/* =============================================
   TEKİN SIHHİ TESİSAT BODRUM - Main Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --primary: #0E3A5D;
    --primary-light: #1F5F8B;
    --primary-dark: #071E32;
    --secondary: #FF8A00;
    --secondary-hover: #E67A00;
    --yellow: #F5B700;
    --white: #FFFFFF;
    --light-bg: #F4F6F8;
    --light-bg2: #EDF1F5;
    --border: #DEE5ED;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --success: #10B981;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(14, 58, 93, 0.08);
    --shadow-md: 0 8px 30px rgba(14, 58, 93, 0.12);
    --shadow-lg: 0 20px 60px rgba(14, 58, 93, 0.18);
    --transition: all 0.3s ease;
    --font-main: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: var(--font-body);
}

/* ---- Container ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-cta {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(255, 138, 0, 0.35);
}

.btn-cta:hover {
    background: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 138, 0, 0.45);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---- Section Styles ---- */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(14, 58, 93, 0.08);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-desc {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ========================================
   TOPBAR
   ======================================== */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.topbar-phone {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 4px 14px;
    border-radius: 100px;
    font-weight: 700;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-phone:hover {
    background: var(--secondary-hover);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 0;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background: var(--secondary);
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-brand {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(14, 58, 93, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover {
    background: var(--light-bg);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(7, 30, 50, 0.6) 0%,
        rgba(14, 58, 93, 0.3) 50%,
        rgba(7, 30, 50, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 120px;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 138, 0, 0.2);
    border: 1px solid rgba(255, 138, 0, 0.4);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title-highlight {
    color: var(--yellow);
    position: relative;
}

.hero-slogan {
    font-family: var(--font-main);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-slogan strong {
    color: var(--yellow);
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.65s both;
}

.btn-hero-cta {
    padding: 18px 36px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 30px rgba(255, 138, 0, 0.5);
}

.btn-hero-secondary {
    padding: 16px 32px;
    font-size: 0.95rem;
}

/* Hero Trust Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--yellow);
    font-size: 0.9rem;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 70px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.slider-dot.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 58, 93, 0.15);
}

.service-card-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 24px;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(14, 58, 93, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-icon-orange {
    background: rgba(255, 138, 0, 0.1);
    color: var(--secondary);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card:hover .service-icon-orange {
    background: var(--secondary);
    color: var(--white);
}

.service-title {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.service-tags span {
    background: var(--light-bg);
    color: var(--text-medium);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    background: var(--white);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-title::after {
    left: 0;
    transform: none;
}

.why-us-content .section-title {
    display: block;
}

.why-us-content .section-desc {
    text-align: left;
    margin-left: 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.advantage-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--light-bg);
    transition: var(--transition);
}

.advantage-item:hover {
    border-color: rgba(14, 58, 93, 0.2);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 58, 93, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.advantage-icon-orange {
    background: rgba(255, 138, 0, 0.1);
    color: var(--secondary);
}

.advantage-item:hover .advantage-icon {
    background: var(--primary);
    color: var(--white);
}

.advantage-item:hover .advantage-icon-orange {
    background: var(--secondary);
    color: var(--white);
}

.advantage-text h4 {
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.advantage-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Why Us Image */
.why-us-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.why-us-img-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-main);
    color: var(--primary-dark);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--secondary);
    font-size: 1rem;
}

.floating-badge-1 {
    top: 30px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: 100px;
    right: -30px;
    animation-delay: 1s;
}

.floating-badge-3 {
    bottom: 40px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    color: var(--yellow);
}

.stat-item:nth-child(3) .stat-number::after {
    content: '/7';
    font-size: 1.4rem;
    color: var(--yellow);
}

.stat-item:nth-child(4) .stat-number::after {
    content: '%';
    font-size: 2rem;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-wrapper {
    position: relative;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--light-bg2);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-quote i {
    color: var(--secondary);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-main);
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.carousel-dot-item.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: var(--transition);
    background: var(--light-bg);
}

.contact-card:hover {
    border-color: rgba(14, 58, 93, 0.2);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.contact-phone {
    font-size: 1.2rem;
    color: var(--secondary) !important;
}

.contact-phone:hover {
    color: var(--secondary-hover) !important;
}

.contact-detail small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.whatsapp-link:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-desc {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 7px;
    font-family: var(--font-main);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(14, 58, 93, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 30px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
}

.form-success i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 12px;
    display: block;
}

.form-success p {
    color: var(--success);
    font-weight: 600;
    font-family: var(--font-main);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    background: var(--light-bg);
}

.map-header {
    background: var(--primary);
    padding: 20px 0;
}

.map-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.map-info {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.map-info i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.map-info strong {
    display: block;
    font-family: var(--font-main);
    font-weight: 700;
}

.map-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.map-embed {
    line-height: 0;
}

.map-embed iframe {
    display: block;
    width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-main {
    background: var(--primary-dark);
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-logo .logo-brand,
.footer-logo .logo-sub {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: rgba(255,255,255,0.6);
}

.footer-logo .logo-icon {
    background: var(--secondary);
    color: var(--white);
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-top: 18px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-link {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

.footer-social .social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.footer-heading {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 0.65rem;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact ul li i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.85);
}

/* ========================================
   MOBILE CTA BAR
   ======================================== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: var(--font-main);
    color: var(--text-medium);
    transition: var(--transition);
}

.mobile-cta-btn i {
    font-size: 1.1rem;
}

.mobile-call {
    background: var(--secondary);
    color: var(--white) !important;
}

.mobile-whatsapp {
    color: #25D366 !important;
}

.mobile-cta-btn:hover {
    background: var(--light-bg);
}

.mobile-call:hover {
    background: var(--secondary-hover);
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 997;
    transition: var(--transition);
    animation: pulse-wa 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ========================================
   AOS - Scroll Animations
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Tablets */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-us-inner {
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    /* Header */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: var(--white);
        z-index: 999;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s ease;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    /* Why Us */
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-image {
        order: -1;
    }

    .why-us-img-wrap img {
        height: 420px;
    }

    .floating-badge-1, .floating-badge-3 {
        display: none;
    }

    /* Contact */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(4)::after {
        display: none;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Testimonials */
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .section {
        padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Topbar */
    .topbar-left {
        display: none;
    }

    /* Header */
    .header-inner {
        height: 64px;
    }

    .logo-sub {
        display: none;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding-bottom: 160px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-cta, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 16px 24px;
    }

    .hero-badges {
        gap: 8px;
    }

    .trust-badge {
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .hero-slider-controls {
        right: 20px;
        bottom: 120px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile CTA Bar */
    .mobile-cta-bar {
        display: flex;
    }

    .whatsapp-float {
        display: none;
    }

    /* Map */
    .map-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Contact form */
    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* Why us advantages */
    .advantages-list {
        gap: 12px;
    }

    .advantage-item {
        padding: 16px;
    }

    .why-us-img-wrap img {
        height: 300px;
    }

    .floating-badge-2 {
        right: -10px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* Very Small Mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .trust-badge span {
        display: none;
    }
}
