/* ==========================================================================
   Okur Gider Açma & Tesisat - Global CSS Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #106eea;
    --primary-dark: #0d59bd;
    --primary-light: #eef5ff;
    --accent: #ff6a00;
    --accent-dark: #e05d00;
    --accent-light: #fff0e6;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(16, 110, 234, 0.1), 0 4px 6px -2px rgba(16, 110, 234, 0.05);
    --shadow-accent: 0 10px 15px -3px rgba(255, 106, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background-color: var(--accent-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

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

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

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    font-size: 0.85rem;
    padding: 8px 0;
}

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

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

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

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

.logo-icon-svg,
.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 6px;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.brand-name span {
    color: var(--accent);
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

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

.nav-cta {
    background-color: var(--accent);
    color: var(--bg-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
    background-color: var(--accent-dark);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Nav Toggle states */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 110, 234, 0.9) 0%, rgba(15, 32, 67, 0.85) 100%), url('images/hero-bg.webp') no-repeat center center/cover;
    color: var(--bg-white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 106, 0, 0.2);
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: #ff9d5c;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease 0.2s;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.hero-card-list {
    margin-bottom: 20px;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.hero-card-item svg {
    width: 20px;
    height: 20px;
    fill: #22c55e;
}

/* Feature Cards Section */
.features {
    background-color: var(--bg-white);
    margin-top: -40px;
    position: relative;
    z-index: 20;
    padding-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-box {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-box:nth-child(2) {
    border-top-color: var(--accent);
}

.feature-box:nth-child(3) {
    border-top-color: #22c55e;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box:nth-child(1) .feature-icon {
    background-color: var(--primary-light);
    color: var(--primary);
}

.feature-box:nth-child(2) .feature-icon {
    background-color: var(--accent-light);
    color: var(--accent);
}

.feature-box:nth-child(3) .feature-icon {
    background-color: #dcfce7;
    color: #15803d;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


.service-icon-wrap {
    height: 160px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
.service-icon-wrap svg {
    width: 64px;
    height: 64px;
    fill: currentColor;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background-color: var(--accent-light);
    color: var(--accent);
}
.service-card:hover .service-icon-wrap svg {
    transform: scale(1.1);
}

.service-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.service-card-link:hover {
    color: var(--accent);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition);
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* About Section */
.about {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-accent);
    text-align: center;
}

.about-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list {
    margin: 24px 0 36px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.about-item svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.about-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    background-color: var(--bg-light);
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pagination / Filter for 20 reviews */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-dot.active {
    background-color: var(--primary);
    width: 30px;
}

.review-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.author-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    background-color: var(--bg-white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-desc {
    color: var(--text-muted);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon.whatsapp {
    background-color: #dcfce7;
    color: #22c55e;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-method-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-method-details a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

/* Contact Form */
.contact-form-wrap {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 110, 234, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.form-checkbox-label a:hover {
    color: var(--accent);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0 100px;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 24px;
    }
}

.legal-title {
    font-size: 2.25rem;
    margin-bottom: 30px;
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}

.legal-content {
    font-size: 1rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: 35px 0 15px;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-dark);
}

/* Service Detail Page Banner */
.service-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 110, 234, 0.95) 0%, rgba(15, 32, 67, 0.9) 100%);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.service-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.service-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.service-breadcrumbs a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.service-detail-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-detail-img {
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.service-detail-text h2 {
    font-size: 1.75rem;
    margin: 30px 0 15px;
    color: var(--primary);
}

.service-detail-text p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-text ul {
    list-style-type: check;
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    list-style: none;
}

.service-detail-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sidebar-box-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.sidebar-service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
}

.sidebar-service-link:hover, .sidebar-service-link.active {
    background-color: var(--primary);
    color: var(--bg-white);
}

.sidebar-service-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.sidebar-cta .phone {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

/* Call to Action Bar */
.cta-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 50px 0;
}

.cta-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-bar-text h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-bar-text p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-bar-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-brand-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-brand-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

.footer-links h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

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

.footer-links a {
    font-size: 0.95rem;
}

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

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--bg-white);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: var(--transition);
    color: var(--bg-white);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-phone {
    background-color: var(--primary);
}

.floating-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .features {
        margin-top: 0;
        padding-top: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-card:nth-child(3n) {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        align-items: stretch;
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
        display: block;
        text-align: center;
    }
    .nav-cta {
        text-align: center;
    }
    .hero {
        padding: 80px 0 60px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card:nth-child(even) {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-img-wrap {
        margin-bottom: 30px;
        max-width: 90%;
    }
    .cta-bar-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-bar-actions {
        width: 100%;
        justify-content: center;
    }
}
