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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header Styles */
.top-bar {
    background-color: #1e293b;
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a:hover {
    color: #ea580c;
}

.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.logo span {
    color: #ea580c;
}

.nav {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav a:hover {
    color: #ea580c;
}

.cta-button {
    background: #ea580c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 15px;
}

.cta-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #475569;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #fed7aa 100%);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KPGcgZmlsbD0iI2Y5NzMxNiIgZmlsbC1vcGFjaXR5PSIwLjA1Ij4KPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMiI+PC9jaXJjbGU+CjwvZz4KPC9nPgo8L3N2Zz4=');
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #fed7aa;
    font-size: 14px;
    font-weight: 500;
    align-self: flex-start;
}

.trust-badge img {
    height: 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
}

.hero h1 span {
    color: #ea580c;
}

.hero-description {
    font-size: 1.3rem;
    color: #475569;
    line-height: 1.7;
    max-width: 90%;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.benefit i {
    color: #16a34a;
    font-size: 18px;
}

.benefit span {
    font-weight: 500;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ea580c;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2);
}

.btn-primary:hover {
    background: #c2410c;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(234, 88, 12, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
    padding: 16px 34px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #ea580c;
    color: white;
    transform: translateY(-3px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: rotate(0deg);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 24px;
    text-align: center;
}

.hero-image-info h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.hero-image-info .title {
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-image-info .exp {
    font-size: 14px;
    color: #64748b;
}

.hero-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ea580c;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about h2 span {
    color: #ea580c;
}

.about h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.professional-summary {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 32px;
}

.professional-summary h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.about-image {
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    justify-content: center;
    border-radius: 16px;
}

.about-image img {
    width: 100%;
    height: 425px;
    object-fit: cover;
    padding: 25px;
    box-shadow: none;
}

.checkatrade-badge2 {
    position: absolute;
    top: -15px;
    right: -15px;
    background: white;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.checkatrade-badge img {
    height: auto;
    width: 250px;
    max-width: 250px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 100px;
}

.stat-card {
    background: white;
    text-align: center;
    padding: 48px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: #fed7aa;
    color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ea580c;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: #64748b;
}

.why-choose {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-card {
    background: white;
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-card:hover .why-icon {
    background: #ea580c;
    color: white;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #fed7aa;
    color: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    transition: all 0.3s;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-header h2 span {
    color: #ea580c;
}

.section-header p {
    font-size: 1.3rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-image-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ea580c;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-content {
    padding: 32px 24px;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #ea580c;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
}

.services-list {
    background: #f8fafc;
    padding: 48px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.services-list h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

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

.service-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.service-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-dot {
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-name {
    font-weight: 500;
    color: #475569;
}

.services-cta {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.2);
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #ea580c;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-steps {
    position: relative;
    margin-bottom: 80px;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #ea580c 50%, #16a34a 100%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: white;
    padding: 48px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number-container {
    position: relative;
    margin-bottom: 24px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step-card:nth-child(1) .step-number {
    background: #3b82f6;
}

.step-card:nth-child(2) .step-number {
    background: #ea580c;
}

.step-card:nth-child(3) .step-number {
    background: #16a34a;
}

.step-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-card:nth-child(1) .step-icon {
    color: #3b82f6;
}

.step-card:nth-child(2) .step-icon {
    color: #ea580c;
}

.step-card:nth-child(3) .step-icon {
    color: #16a34a;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.step-description {
    color: #64748b;
    line-height: 1.7;
}

.process-cta {
    background: #1e293b;
    color: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.process-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-cta p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.process-image img {
    max-width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-category {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.gallery-cta {
    background: white;
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
}

.gallery-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.gallery-cta p {
    color: #64748b;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header i {
    color: #ea580c;
}

.form-header p {
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

select.form-control {
    cursor: pointer;
}

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

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

.contact-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:nth-child(1) .contact-icon {
    background: #dcfce7;
    color: #16a34a;
}

.contact-item:nth-child(2) .contact-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.contact-item:nth-child(3) .contact-icon {
    background: #fed7aa;
    color: #ea580c;
}

.contact-item:nth-child(4) .contact-icon {
    background: #e9d5ff;
    color: #7c3aed;
}

.contact-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
    white-space: pre-line;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-green {
    background: #16a34a;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}

.btn-green:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.3);
}

.btn-blue {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-blue:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.checkatrade-info {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #fed7aa;
}

.checkatrade-info img {
    height: 64px;
    margin-bottom: 16px;
}

.checkatrade-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.checkatrade-info a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}

.checkatrade-info a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    display: none;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #16a34a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-message.show {
    display: flex;
}

.success-message i {
    color: #16a34a;
    font-size: 20px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    margin-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-section h4 span {
    color: #ea580c;
}
.footer-section .btn-primary {
    font-size: 15px;
    padding: 14px 23px;
}
.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-certifications {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    flex-direction: column;
}

.footer-certifications img {
    height: 40px;
}

.cert-info {
    font-size: 14px;
}

.cert-info div:first-child {
    font-weight: 600;
    color: white;
}

.cert-info div:last-child {
    color: #94a3b8;
}

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

.social-link {
    background: #374151;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

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

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.process-buttons .btn-primary {
    width: auto;
}
.footer-list i {
    color: #ea580c;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #ea580c;
}

.footer-note {
    background: #374151;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-note strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #94a3b8;
    flex-wrap: wrap;
    justify-content: center;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ea580c;
}

#lightbox-image {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

#lightbox-caption {
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    max-width: 600px;
}

/* Modern Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: none;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: slideIn 0.3s ease-out;
}

.alert.show {
    display: flex;
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-left: 4px solid #047857;
}

.alert-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border-left: 4px solid #b91c1c;
}

.alert-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-left: 4px solid #b45309;
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.alert-close:hover {
    opacity: 1;
}

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

/* Form Field Error States */
.form-control.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 6px;
}

.field-error.show {
    display: flex;
}

.field-error i {
    font-size: 12px;
}

/* Loading Button */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading .btn-text {
    opacity: 0;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Basic Form Styles for Demo */
.contact-form {
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
}

.form-header h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header p {
    color: #64748b;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

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

.btn-primary {
    background: #ea580c;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    width: 100%;
}

.btn-primary:hover:not(.btn-loading) {
    background: #c2410c;
    transform: translateY(-2px);
}

/* Responsive Design Düzeltmeleri */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {

    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid,
    .why-choose,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-line {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2,
    .about h2 {
        font-size: 2.8rem;
    }

    .hero-image img {
        height: 400px;
        object-fit: contain;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-image-container img {
        height: auto!important;
    }
    .contact-form {
        margin: 6px;
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .alert {
        font-size: 13px;
        padding: 14px 16px;
    }
    .nav,
    .cta-button {
        display: none;
    }
    .about-image .checkatrade-badge-logo img {
        object-fit: contain;
        height: auto;
    }
    .form-header h3 {
        font-size: 1.5rem;
    }
    .form-group {
        margin-bottom: 0;
    }
    .checkatrade-badge img {
        width: 250px !important;
        max-width: 250px !important;
    }
    .process-buttons .btn-white {
        padding: 8px 20px;
    }
    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    .about,
    .services,
    .process,
    .gallery,
    .contact {
        padding: 60px 0;
    }

    .process-image img {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2,
    .about h2 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .section-header p {
        font-size: 1.2rem;
    }

    .hero-buttons,
    .process-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stats-grid,
    .why-choose,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-bottom-info {
        flex-direction: column;
        gap: 8px;
    }

    .hero-image img {
        height: 400px;
    }

    .hero-content {
        gap: 50px;
    }

    .about-grid {
        gap: 50px;
    }

    .contact-grid {
        gap: 50px;
    }

    .container {
        padding: 0 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-right {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 24px;
    }

    .contact-form,
    .services-cta,
    .process-cta {
        padding: 40px 32px;
    }

    .services-list {
        padding: 40px 32px;
    }

    .gallery-cta {
        padding: 40px 32px;
    }

    .step-card {
        padding: 40px 24px;
    }

    .stat-card,
    .why-card {
        padding: 40px 24px;
    }

    .service-content {
        padding: 24px 20px;
    }

    .contact-item {
        padding: 18px;
    }

    .professional-summary {
        padding: 28px;
    }

    .footer-section {
        text-align: left;
    }

    .footer-certifications {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .quick-actions a {
        font-size: 1.1rem;
        padding: 18px;
    }
}

@media (max-width: 480px) {

    .hero,
    .about,
    .services,
    .process,
    .gallery,
    .contact {
        padding: 50px 0;
    }

    .process-image img {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-header h2,
    .about h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .about h3 {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .container {
        padding: 0 16px;
    }

    .contact-form,
    .services-cta,
    .process-cta {
        padding: 32px 24px;
    }

    .services-list {
        padding: 32px 24px;
    }

    .gallery-cta {
        padding: 32px 24px;
    }

    .btn-primary,
    .btn-outline {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .hero-image img {
        height: 400px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .why-card h3,
    .service-title {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .lightbox-close {
        top: 15px;
        right: 25px;
        font-size: 32px;
    }

    #lightbox-caption {
        font-size: 16px;
        padding: 15px;
    }

    .trust-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .trust-badge img {
        height: 20px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-right: 10px;
    }
    .services-list {
        padding: 20px 8px!important;
    }
    .service-item {
        padding: 12px;
    }
    .process-cta h3 {
        font-size: 2.2rem;
    }
    .contact-form {
        padding: 16px 8px!important;
    }
    .services-cta h3,
    .gallery-cta h3 {
        font-size: 1.8rem;
    }

    .top-bar {
        font-size: 13px;
        padding: 10px 0;
    }

    .header-content {
        height: 70px;
    }

    .step-card {
        padding: 32px 20px;
    }

    .stat-card,
    .why-card {
        padding: 32px 20px;
    }

    .contact-item {
        padding: 14px;
        gap: 20px;
    }

    .professional-summary {
        padding: 24px;
    }

    .footer {
        padding: 60px 0 20px;
    }

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

    .footer-certifications {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .process-image img {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2,
    .about h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 12px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-icon,
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .contact-form,
    .services-cta,
    .process-cta,
    .services-list,
    .gallery-cta {
        padding: 24px 16px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 20px;
    }
}

.mobile-nav a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #ff6b35;
    /* Hover rengi */
}

.mobile-nav a.btn-primary {
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    background-color: #ff6b35;
    border-radius: 5px;
    text-decoration: none;
}

.mobile-nav a.btn-primary:hover {
    background-color: #e55a28;
}