:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #334155;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

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

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px 0;
}

.section-title .divider {
    margin: 20px auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.35);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

header.sticky {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('arkaplanhalıyıkama.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 100px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header p {
    opacity: 0.8;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.mt-60 { margin-top: 60px; }

/* About Detail */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.feat i {
    color: var(--primary);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

/* Metin Logo */
.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    transition: var(--transition);
}

.logo-sub {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

header.sticky .logo-text {
    color: var(--dark);
}

header.sticky .logo a {
    color: var(--dark);
}

/* Footer metin logo */
footer .logo-text {
    color: var(--white);
}

footer .logo-sub {
    color: var(--primary);
}

.logo span {
    color: var(--primary);
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    opacity: 0.9;
}

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

nav a:hover {
    color: var(--white);
    opacity: 1;
}

nav a:hover::after {
    width: 100%;
}

header.sticky nav a {
    color: var(--dark);
    opacity: 0.8;
}

header.sticky nav a:hover {
    color: var(--primary);
    opacity: 1;
}

nav a.active {
    color: var(--white);
    opacity: 1;
}

nav a.active::after {
    width: 100%;
}

header.sticky nav a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: -1;
}

.hero-content h5 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.highlight-item {
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 25px;
}

/* Stats */
.stats-bar {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Services */
.services-list {
    margin-top: 80px;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-num {
    font-size: 120px;
    font-weight: 800;
    color: rgba(14, 165, 233, 0.1);
    line-height: 1;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition);
}

.step:hover .step-num {
    background: var(--primary);
    color: var(--white);
}

/* Timeline storytelling */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.1);
}

.timeline-content {
    width: 85%;
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    display: flex;
    gap: 25px;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.2);
}

.timeline-icon {
    flex: 0 0 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.timeline-text {
    flex: 1;
}

.step-label {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.timeline-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.timeline-text p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .timeline-line { left: 30px; }
    .timeline-item, .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    .timeline-dot { left: 30px; }
    .timeline-content, .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        flex-direction: row;
        text-align: left;
    }
    .timeline-icon { flex: 0 0 60px; height: 60px; font-size: 22px; }
}

/* Contact Detail (Akbas Style) */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-card p {
    font-size: 16px;
    color: var(--text);
    opacity: 0.8;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 900px;
    margin: 0 auto 100px;
}

.form-title {
    text-align: center;
    margin-bottom: 50px;
}

.form-title h2 {
    font-size: 36px;
    letter-spacing: 2px;
}

.contact-form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    outline: none;
}

.form-group textarea {
    border-radius: 20px;
    padding-top: 20px;
    height: 150px;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.btn-submit {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Full Width Map */
.full-map {
    height: 500px;
    width: 100%;
    filter: grayscale(1);
    transition: var(--transition);
}

.full-map:hover {
    filter: grayscale(0);
}

/* Footer Redesign */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
}

.footer-legal-links a {
    color: var(--white);
    opacity: 0.5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Testimonials */
.testimonials {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Info Card (Plastic Bag Warning) */
.info-card {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-bottom: 5px solid var(--accent);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 36px;
    margin-bottom: 30px;
}

.info-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--dark);
}

.info-text p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-footer {
    margin-top: 30px;
    padding: 20px 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
}

/* Redesigned Info Section (Alt) */
.info-notice-alt {
    background: var(--white);
    overflow: hidden;
}

.info-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--light);
    padding: 80px;
    border-radius: 40px;
    position: relative;
}

.info-image-side {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}

.warning-icon-box {
    width: 200px;
    height: 200px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-size: 80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    border-radius: 40px;
    animation: icon-pulse 2s infinite;
}

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

.info-text-side {
    flex: 1;
}

.info-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.info-text-side h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.info-text-side h2 span {
    color: var(--primary);
}

.info-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

.info-point {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-point i {
    color: var(--primary);
    font-size: 18px;
}

.info-point p {
    font-size: 16px;
    font-weight: 500;
}

.info-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 20px;
    border-left: 4px solid var(--accent);
    margin-top: 20px;
}

.info-action i {
    color: var(--accent);
}

.info-action p {
    margin: 0;
    font-size: 15px;
}

@media (max-width: 992px) {
    .info-flex { flex-direction: column; padding: 40px; text-align: center; gap: 40px; }
    .info-image-side { flex: none; }
    .info-point { justify-content: center; }
    .info-action { justify-content: center; }
    .info-text-side h2 { font-size: 32px; }
}

/* Vision & Mission */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.vision-item .icon-box {
    margin: 0 auto 25px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--light);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}

.value-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.quote-icon {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-item p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
    font-size: 16px;
}

.testi-author h4 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 5px;
}

.testi-author span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.area-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.area-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.area-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.area-item:hover i {
    color: var(--white);
}

.area-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.area-item p {
    font-size: 14px;
    opacity: 0.7;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float i {
    font-size: 18px;
}

.whatsapp-float span {
    font-weight: 600;
    font-size: 13px;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    background: #128c7e;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Policy Pages */
.policy-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--dark);
}

.policy-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.stars {
    color: #f59e0b;
    margin-top: 5px;
    font-size: 14px;
}

.stars i {
    margin-right: 2px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

header.sticky .mobile-toggle span {
    background: var(--dark);
}

.mobile-toggle.active span {
    background: var(--white) !important;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN (Mobile & Tablet)
------------------------------------------------------ */

/* Tablets and Small Desktops (Large Tablet) */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .hero-content h1 { font-size: 52px; }
    .about-grid { gap: 40px; }
}

/* Tablets (Portrait) */
@media (max-width: 992px) {
    header {
        padding: 15px 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
    }

    header.sticky {
        background: var(--white);
    }

    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    nav a {
        font-size: 22px;
        color: var(--white) !important;
        font-weight: 600;
    }

    .header-cta {
        display: none;
    }

    /* Layout Grids */
    .highlights-grid, 
    .stats-grid, 
    .testimonials-grid, 
    .footer-grid, 
    .about-grid, 
    .vision-grid, 
    .values-grid, 
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 { font-size: 46px; }
    .section-padding { padding: 80px 0; }
    
    .service-row, .service-row.reverse { 
        flex-direction: column; 
        gap: 30px; 
    }
    
    .service-image { 
        width: 100%; 
        height: 350px; 
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 38px; }
    .hero-content p { font-size: 16px; }
    
    .page-header h1 { font-size: 42px; }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item span { font-size: 32px; }

    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-steps::before { display: none; }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones (Standard) */
@media (max-width: 576px) {
    .container { padding: 0 20px; }
    
    .section-padding { padding: 60px 0; }
    
    .hero-content h1 { font-size: 32px; }
    .hero-content h5 { font-size: 12px; }
    
    .page-header h1 { font-size: 36px; }
    .page-header p { font-size: 16px; }

    /* Stack everything to single column */
    .highlights-grid, 
    .stats-grid, 
    .testimonials-grid, 
    .footer-grid, 
    .about-grid, 
    .vision-grid, 
    .values-grid, 
    .contact-cards,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col { text-align: center; }
    .footer-contact-item { justify-content: center; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    #scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        bottom: 30px !important;
        right: 20px;
    }
}

/* Extra Small Phones */
@media (max-width: 380px) {
    .hero-content h1 { font-size: 28px; }
    .logo-text { font-size: 18px; }
    .logo-sub { font-size: 9px; }
}
