/* ========================================
   GÜNEŞ EMLAK - CLEAN CSS
   ======================================== */

/* RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #D4752C;
    --orange-light: #E8924A;
    --orange-dark: #B5621F;
    --transition-theme: background .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
}

/* DARK THEME */
[data-theme="dark"] {
    --bg-primary: #0A0A0A;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #2A2A2A;
    --text-primary: #FFF;
    --text-secondary: #E5E5E5;
    --text-muted: #888;
    --border-color: rgba(255, 255, 255, .1);
    --border-hover: rgba(212, 117, 44, .3);
    --card-bg: #1A1A1A;
    --shadow-color: rgba(0, 0, 0, .5);
    --hero-gradient: rgba(212, 117, 44, .15);
}

/* LIGHT THEME */
[data-theme="light"] {
    --bg-primary: #F8F9FA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E9ECEF;
    --text-primary: #1A1A1A;
    --text-secondary: #333;
    --text-muted: #666;
    --border-color: rgba(0, 0, 0, .1);
    --border-hover: rgba(212, 117, 44, .4);
    --card-bg: #FFFFFF;
    --shadow-color: rgba(0, 0, 0, .1);
    --hero-gradient: rgba(212, 117, 44, .08);
}

/* BASE */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition-theme);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .4s;
}

.navbar.scrolled {
    background: #0A0A0A !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo-text {
    color: white !important;
}

.navbar.scrolled .nav-btn {
    color: white !important;
}

.navbar.scrolled .theme-toggle {
    background: #1A1A1A !important;
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--orange) !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    transition: var(--transition-theme);
}

.logo-text span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--orange) !important;
    color: var(--text-primary) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 117, 44, .4);
    transition: all .3s;
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    background: var(--orange-light) !important;
    transform: translateY(-2px);
}

/* THEME TOGGLE */
.theme-toggle {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    margin-right: 1rem;
}

.theme-toggle:hover {
    border-color: var(--orange);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 1.2rem;
    color: var(--orange);
    transition: transform .5s;
}

.theme-toggle:hover i {
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle .fa-moon {
    display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--hero-gradient) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, var(--hero-gradient) 0%, transparent 40%);
    transition: var(--transition-theme);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 117, 44, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 117, 44, .03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 117, 44, .15);
    border: 1px solid rgba(212, 117, 44, .3);
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--orange);
}

.hero-badge span {
    color: var(--orange-light);
    font-size: .9rem;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition-theme);
}

.hero h1 .highlight {
    color: var(--orange);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 117, 44, .3);
    z-index: -1;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    transition: var(--transition-theme);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 25px rgba(212, 117, 44, .4);
    transition: all .3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 117, 44, .5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    transition: var(--transition-theme);
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
}

.hero-stat-label {
    color: var(--text-muted);
    font-size: .9rem;
    transition: var(--transition-theme);
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
}

.hero-card-main {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 25px 80px var(--shadow-color);
    transition: var(--transition-theme);
}

.hero-card-image {
    height: 420px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-theme);
}

.hero-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 117, 44, .3) 0%, transparent 70%);
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 50px var(--shadow-color);
    animation: float-card 6s ease-in-out infinite;
    transition: var(--transition-theme);
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-75px);
    }
}

.floating-card-1 {
    top: 20px;
    right: -30px;
}

.floating-card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 1s;
}

.floating-card i {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.floating-card h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: .25rem;
    transition: var(--transition-theme);
}

.floating-card p {
    color: var(--text-muted);
    font-size: .8rem;
    transition: var(--transition-theme);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 117, 44, .1);
    color: var(--orange);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 117, 44, .2);
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--transition-theme);
}

.section-title .highlight {
    color: var(--orange);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    transition: var(--transition-theme);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--bg-secondary);
    transition: var(--transition-theme);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Visual - Resimle aynı boyutta */
.about-visual {
    position: relative;
    width: 100%;
}

/* About Image */
.about-image-main {
    display: block;
    position: relative;
    line-height: 0;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 15px 50px var(--shadow-color);
    border: 1px solid var(--border-color);
}

/* About Stats Card */
.about-stats-card {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: var(--bg-primary);
    border: 1px solid rgba(212, 117, 44, .3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    transition: var(--transition-theme);
    box-shadow: 0 10px 40px var(--shadow-color);
    z-index: 10;
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.about-stat-label {
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition-theme);
}

/* About Content */
.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content .section-desc {
    text-align: left;
    margin: 0 0 1.5rem 0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 117, 44, .1);
    border: 1px solid rgba(212, 117, 44, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--orange);
}

.about-feature h4 {
    color: var(--text-primary);
    font-size: .95rem;
    margin-bottom: .25rem;
    transition: var(--transition-theme);
}

.about-feature p {
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition-theme);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: var(--transition-theme);
}

.team::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 117, 44, .08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.team-card-inner {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all .4s;
}

.team-card:hover .team-card-inner {
    background: rgba(212, 117, 44, .05);
    border-color: var(--border-hover);
    transform: translateY(-10px);
}

.team-avatar {
    width: 140px;
    height: 140px;
    background: var(--orange);
    border-radius: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(212, 117, 44, 0.3);
    transition: transform 0.4s;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25%;
}

.team-avatar i {
    font-size: 3.5rem;
    color: #fff;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: .25rem;
    transition: var(--transition-theme);
}

.team-role {
    color: var(--orange);
    font-size: .9rem;
    font-weight: 500;
}

.team-exp {
    color: var(--text-muted);
    font-size: .85rem;
    transition: var(--transition-theme);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all .3s;
}

.team-social a:hover {
    background: var(--orange);
    color: #fff;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--bg-primary);
    transition: var(--transition-theme);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    opacity: 0;
    transition: opacity .4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 117, 44, .1);
    border: 1px solid rgba(212, 117, 44, .2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all .4s;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, .2);
    border-color: transparent;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--orange);
    transition: color .4s;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--transition-theme);
}

.service-card:hover h3 {
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    transition: color .4s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, .9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 1.5rem;
    text-decoration: none;
    transition: color .3s;
}

.service-card:hover .service-link {
    color: #fff;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--bg-secondary);
    transition: var(--transition-theme);
}

.contact-grid {
    display: grid;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info .section-badge {
    margin-bottom: 1rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info .section-desc {
    text-align: left;
    margin: 0 0 2rem 0;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 12px;
    transition: all .3s;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--border-hover);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 117, 44, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--orange);
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: .25rem;
    transition: var(--transition-theme);
}

.contact-item p {
    color: var(--text-muted);
    font-size: .95rem;
    transition: var(--transition-theme);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand>p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    text-decoration: none;
    transition: all .3s;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: .75rem;
}

.footer-col ul a {
    color: #888;
    text-decoration: none;
    transition: all .3s;
    font-size: .95rem;
}

.footer-col ul a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #888;
    font-size: .9rem;
}

/* ========================================
   SCROLL TOP & WHATSAPP
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    box-shadow: 0 5px 25px rgba(212, 117, 44, .4);
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(37, 211, 102, .5);
    z-index: 999;
    transition: all .4s;
}

.whatsapp-btn i {
    font-size: 2rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(37, 211, 102, .6);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #25D366 transparent transparent;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   RESPONSIVE - TABLET (max 1200px)
   ======================================== */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-main img {
        border-radius: 20px;
    }

    .about-stats-card {
        right: 10px;
        padding: 1.25rem 1.75rem;
        gap: 1.75rem;
    }
}

/* ========================================
   RESPONSIVE - TABLET SMALL (max 992px)
   ======================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content .section-title,
    .about-content .section-desc {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-main img {
        border-radius: 18px;
    }

    .about-stats-card {
        bottom: -25px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 1.25rem 1.5rem;
        gap: 1.5rem;
    }

    .about-stat-value {
        font-size: 1.75rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (max 768px)
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    section {
        padding: 60px 5%;
    }

    .navbar {
        padding: 0.75rem 5%;
    }

    .about-image-main img {
        border-radius: 14px;
    }

    .about-stats-card {
        bottom: -22px;
        padding: 0.875rem 1.25rem;
        gap: 1.25rem;
    }

    .about-stat-value {
        font-size: 1.35rem;
    }

    .about-stat-label {
        font-size: 0.75rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-btn i {
        font-size: 1.75rem;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ========================================
   RESPONSIVE - MOBILE SMALL (max 576px)
   ======================================== */
@media (max-width: 576px) {
    .about-image-main img {
        border-radius: 12px;
    }

    .about-stats-card {
        bottom: -20px;
        padding: 0.75rem 1rem;
        gap: 1rem;
        min-width: 280px;
    }

    .about-stat-value {
        font-size: 1.25rem;
    }

    .about-stat-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE XS (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .about-image-main img {
        border-radius: 10px;
    }

    .about-stats-card {
        bottom: -18px;
        padding: 0.625rem 0.875rem;
        gap: 0.75rem;
        width: calc(100% - 20px);
        max-width: 300px;
        justify-content: center;
    }

    .about-stat {
        flex: 1;
        min-width: 60px;
    }

    .about-stat-value {
        font-size: 1.1rem;
    }

    .about-stat-label {
        font-size: 0.65rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE XXS (max 400px)
   ======================================== */
@media (max-width: 400px) {
    .about-image-main img {
        border-radius: 8px;
    }

    .about-stats-card {
        bottom: -15px;
        padding: 0.5rem 0.625rem;
        gap: 0.5rem;
        width: calc(100% - 16px);
        border-radius: 10px;
    }

    .about-stat {
        flex: 1;
        min-width: 50px;
    }

    .about-stat-value {
        font-size: 1rem;
    }

    .about-stat-label {
        font-size: 0.6rem;
    }
}