/*
Theme Name: Silkora Group
Theme URI: https://silkoragroup.com
Author: Silkora Group
Author URI: https://silkoragroup.com
Description: Küresel büyüme ve stratejik ihracat geliştirme ortağınız için modern ve profesyonel WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: silkoragroup
Tags: business, corporate, export, international, modern, responsive
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f5f5f5;
}

a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b91c1c;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    align-items: baseline;
}

.logo-bold {
    color: #1a1a1a;
    font-weight: 700;
}

.logo-light {
    color: #6b7280;
    font-weight: 400;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    color: #1f2937;
    font-weight: 500;
    display: block;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.main-navigation ul li a:hover {
    color: #dc2626;
}

.main-navigation ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0.375rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul li ul li {
    width: 100%;
}

.main-navigation ul li ul li a {
    padding: 0.5rem 1rem;
    color: #333;
}

.main-navigation ul li ul li a:hover {
    background: #f3f4f6;
    color: #dc2626;
}

.cta-button {
    background: #8b1a1a;
    color: #fff;
    padding: 0.625rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #6b1414;
    color: #fff;
}

/* Hero Section */
.hero-section {
    color: #1f2937;
    padding: 6rem 0 8rem;
    text-align: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroZoom 12s ease-in-out infinite alternate;
    will-change: transform;
    filter: grayscale(30%) brightness(0.7);
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 114, 128, 0.5);
    backdrop-filter: blur(1px);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #f3f4f6;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.btn-primary {
    background: #8b1a1a;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #6b1414;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 1.5px solid #1f2937;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #1f2937;
    color: #fff;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(90deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.service-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4b5563;
    border-radius: 50%;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

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

.service-icon svg {
    width: 48px;
    height: 48px;
}

.service-icon svg path,
.service-icon svg circle {
    fill: #000000;
    stroke: #000000;
}

.service-icon svg path,
.service-icon svg circle {
    transition: stroke 0.3s ease, fill 0.3s ease;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 20.4px;
    color: #000000;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.service-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #808080;
    margin: 0;
    white-space: nowrap;
}

/* Services Detail Section */
.services-detail-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-detail-card:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon svg {
    width: 48px;
    height: 48px;
    color: #000000;
}

.service-detail-icon svg path,
.service-detail-icon svg circle,
.service-detail-icon svg polygon,
.service-detail-icon svg line,
.service-detail-icon svg rect {
    fill: #000000;
    stroke: #000000;
}

.service-detail-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-detail-icon-placeholder {
    font-size: 48px;
}

.service-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-detail-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b7280;
}

.service-detail-description p {
    margin: 0;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.why-text-content {
    max-width: 100%;
}

.why-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #808080;
    margin-bottom: 1.5rem;
}

.why-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    color: #808080;
}

.why-feature-item svg {
    flex-shrink: 0;
}

.why-cta-button {
    display: inline-block;
    background: #8b1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.why-cta-button:hover {
    background: #6b1414;
    color: #ffffff;
}

.why-stats-box {
    background: #f5f5f5;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
}

@media (max-width: 768px) {
    .why-stats-box {
        flex-direction: column;
        gap: 2rem;
    }
}

.why-stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0,0,0,0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    pointer-events: none;
}

.why-stats-box .stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-stats-box .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.why-stats-box .stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Stories */
.success-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.company-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.company-sector {
    font-family: 'Poppins', sans-serif;
    color: #808080;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stars {
    color: #fbbf24;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.25rem;
    letter-spacing: 0.3px;
}

.author-position {
    font-family: 'Poppins', sans-serif;
    color: #808080;
    font-size: 0.875rem;
    font-weight: 400;
    font-style: italic;
}

/* Success CTA Section */
.success-cta-section {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 3rem;
}

.success-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.success-cta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.success-cta-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
}

.stat-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.stat-bullet-green {
    background-color: #10b981;
}

.stat-bullet-blue {
    background-color: #3b82f6;
}

.stat-bullet-purple {
    background-color: #8b5cf6;
}

@media (max-width: 640px) {
    .success-cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.blog-category {
    color: #dc2626;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.blog-date {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Blog Page Styles */
.blog-page-section {
    padding: 5rem 0;
    background: #ffffff;
}

.blog-page-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

.blog-page-card {
    background: #fff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.blog-page-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.blog-page-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-page-card:hover .blog-thumbnail-img {
    transform: scale(1.05);
}

.blog-page-content {
    padding: 1.5rem;
}

.blog-page-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

.blog-page-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-page-title a:hover {
    color: #dc2626;
}

.blog-page-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-page-read-more {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-page-read-more:hover {
    color: #b91c1c;
}

.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    margin: 0;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-pagination a:hover {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

.blog-pagination .current {
    background: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 180px;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.floating-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.floating-btn-whatsapp {
    background: #25D366;
}

.floating-btn-whatsapp:hover {
    background: #20BA5A;
}

.floating-btn-call {
    background: #dc2626;
}

.floating-btn-call:hover {
    background: #b91c1c;
}

.floating-btn-quote {
    background: #000000;
}

.floating-btn-quote:hover {
    background: #1a1a1a;
}

.floating-btn-text {
    white-space: nowrap;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        z-index: 9999;
    }
    
    .floating-btn {
        flex: 1;
        min-width: 0;
        padding: 1rem 0.5rem;
        border-radius: 0;
        justify-content: center;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .floating-btn-text {
        display: none;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .floating-btn:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* Quick Quote Section */
.quick-quote-section {
    padding: 4rem 0;
    background: #f5f5f5;
    min-height: 70vh;
}

.quick-quote-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.quick-quote-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.quick-quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-quote-form .form-group {
    margin-bottom: 0;
}

.quick-quote-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.quick-quote-form input,
.quick-quote-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-quote-form input:focus,
.quick-quote-form textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.quick-quote-form input::placeholder,
.quick-quote-form textarea::placeholder {
    color: #9ca3af;
}

.quick-quote-form textarea {
    resize: vertical;
    min-height: 100px;
}

.quick-quote-submit-btn {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.quick-quote-submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-quote-success-message {
    background: #10b981;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.quick-quote-success-message svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.quick-quote-success-message strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.quick-quote-success-message p {
    margin: 0;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.quick-quote-benefits {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.quick-quote-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-quote-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-quote-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #4b5563;
}

.quick-quote-benefits li svg {
    flex-shrink: 0;
    color: #10b981;
}

@media (max-width: 768px) {
    .quick-quote-section {
        padding: 2rem 0;
    }
    
    .quick-quote-form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-quote-benefits {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-main .form-group {
    margin-bottom: 0;
}

.contact-form-main label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

.contact-form-main input,
.contact-form-main textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    color: #1f2937;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.contact-form-main input:focus,
.contact-form-main textarea:focus {
    outline: none;
    border-color: #000000;
}

.contact-form-main input::placeholder,
.contact-form-main textarea::placeholder {
    color: #9ca3af;
}

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

.contact-submit-btn {
    background: #000000;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background: #1a1a1a;
}

.contact-info-box {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}

.contact-info-value a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: #000000;
}

.contact-consultation {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-consultation-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-consultation-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-appointment-btn {
    display: inline-block;
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-appointment-btn:hover {
    background: #1f2937;
    color: #ffffff;
}

.contact-success-message {
    background: #10b981;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    text-align: center;
}

.contact-appointment-btn:hover {
    background: #1f2937;
    color: #ffffff;
}

.contact-success-message {
    background: #10b981;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #9ca3af;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Forms */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-content {
        padding: 1rem 0;
    }
    
    .site-logo {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #333;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .cta-button {
        order: -1;
        margin-left: auto;
        margin-right: 1rem;
    }
}

