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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #404040;
    --light-gold: #F4E4BC;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #333333;
    --accent-gold: #B8860B;
    --success-green: #27ae60;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--primary-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-gold);
    padding: 0;
    margin: 0;
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0 12px 5px;
    margin: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-logo h2 {
    color: var(--dark-bg);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 12px 20px 12px 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-bg);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.quote-btn {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 12px 24px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid var(--dark-bg);
}

.quote-btn:hover {
    background: var(--dark-secondary) !important;
    color: var(--text-light) !important;
    border-color: var(--dark-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-bg);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.05;
    z-index: 1;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

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

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid var(--dark-tertiary);
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--dark-tertiary);
    border: 1px solid var(--dark-tertiary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--dark-bg);
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature h4 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.feature p {
    color: var(--text-muted);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    text-align: center;
    color: white;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.1;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary-gold);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-section i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--dark-secondary);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.1;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.company-story h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.company-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: var(--dark-bg);
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.value-card {
    background: var(--dark-tertiary);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--dark-tertiary);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

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

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: var(--dark-bg);
}

.experience h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.stat {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-tertiary);
    border-radius: 10px;
    border: 1px solid var(--dark-tertiary);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat p {
    color: var(--text-muted);
    font-weight: 600;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

/* Commitment Section */
.commitment {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.commitment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.commitment-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-tertiary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.commitment-item h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.commitment-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-detail {
    margin-bottom: 80px;
    padding: 60px 0;
    background: #f8f9fa;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-header i {
    font-size: 3rem;
    color: #e67e22;
}

.service-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
}

.service-detail h3 {
    color: #2c3e50;
    margin: 30px 0 20px 0;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-list i {
    color: #27ae60;
    font-size: 1.2rem;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Process Section */
.our-process {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    color: white;
    position: relative;
}

.our-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.05;
}

.our-process .container {
    position: relative;
    z-index: 2;
}

.our-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark-tertiary);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text small {
    color: var(--text-muted);
    line-height: 1.4;
}

/* Contact Form */
.contact-form-container {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--dark-tertiary);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--dark-tertiary);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--dark-secondary);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

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

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-areas > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

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

.area-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.area-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.area-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Quote Page Styles */
.quote-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-intro {
    text-align: center;
    margin-bottom: 60px;
}

.quote-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.quote-intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-gold);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--dark-bg);
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-actions .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-note {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--success-green);
}

/* Quote Benefits */
.quote-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    color: white;
    position: relative;
}

.quote-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.05;
}

.quote-benefits .container {
    position: relative;
    z-index: 2;
}

.quote-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.benefit {
    text-align: center;
    padding: 30px 20px;
}

.benefit i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.benefit p {
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Gallery Styles */
.gallery-filter {
    padding: 40px 0;
    background: var(--dark-secondary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--dark-tertiary);
    border: 2px solid var(--dark-tertiary);
    border-radius: 25px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.gallery-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.gallery-category {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 20px;
}

.lightbox-info h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.lightbox-info p {
    color: #7f8c8d;
}

/* Gallery Testimonials */
.gallery-testimonials {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.gallery-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.testimonial {
    background: var(--dark-tertiary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-left: 4px solid var(--primary-gold);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Safety & Warranty Page Styles */
.safety-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.safety-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.safety-section p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.safety-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.safety-feature i {
    color: #e67e22;
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.safety-feature h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.safety-feature p {
    color: #7f8c8d;
    margin: 0;
    font-size: 1rem;
}

.safety-protocols {
    padding: 80px 0;
    background: #f8f9fa;
}

.safety-protocols h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.protocol-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.protocol-icon {
    width: 80px;
    height: 80px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.protocol-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.protocol-card ul {
    list-style: none;
    text-align: left;
}

.protocol-card li {
    color: #7f8c8d;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.protocol-card li::before {
    content: '•';
    color: #e67e22;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.warranty-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.warranty-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.warranty-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.warranty-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warranty-icon {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.warranty-item h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.warranty-item p {
    color: #7f8c8d;
    margin: 0;
}

.warranty-coverage {
    padding: 80px 0;
    background: #f8f9fa;
}

.warranty-coverage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.coverage-card {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coverage-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.coverage-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.warranty-note {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #e67e22;
}

.warranty-note h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.warranty-note ul {
    list-style: none;
}

.warranty-note li {
    color: #7f8c8d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.warranty-note li::before {
    content: '→';
    color: #e67e22;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.insurance-licensing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    color: white;
    position: relative;
}

.insurance-licensing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold) 0%, transparent 100%);
    opacity: 0.05;
}

.insurance-licensing .container {
    position: relative;
    z-index: 2;
}

.insurance-licensing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.insurance-card {
    text-align: center;
    padding: 30px 20px;
}

.insurance-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.insurance-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.insurance-card p {
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Subcontractors Page Styles */
.subcontractor-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.subcontractor-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.subcontractor-intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight i {
    color: #e67e22;
    font-size: 1.5rem;
}

.highlight span {
    color: #2c3e50;
    font-weight: 600;
}

.what-we-offer {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-we-offer h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.offer-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.offer-icon {
    width: 70px;
    height: 70px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.offer-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.offer-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.requirements-list,
.preferred-skills {
    padding: 30px;
    border-radius: 10px;
}

.requirements-list h3,
.preferred-skills h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.requirements-list ul,
.preferred-skills ul {
    list-style: none;
}

.requirements-list li,
.preferred-skills li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
}

.requirements-list i {
    color: #27ae60;
    font-size: 1.2rem;
}

.preferred-skills i {
    color: #e67e22;
    font-size: 1.2rem;
}

.application-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.application-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-container > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.application-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

/* Quote Page Styles */
.quote-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-intro {
    text-align: center;
    margin-bottom: 60px;
}

.quote-intro h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.quote-intro p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #e67e22;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #e67e22;
    border-color: #e67e22;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.form-actions .btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.form-note {
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #27ae60;
}

/* Quote Benefits */
.quote-benefits {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.quote-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.benefit {
    text-align: center;
    padding: 30px 20px;
}

.benefit i {
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 20px;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: auto 1fr;
        padding: 12px 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--primary-gold);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 20px 0;
        z-index: 999;
        gap: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        grid-column: 2;
        justify-self: end;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .reverse {
        direction: ltr;
    }

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

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

    .filter-buttons {
        justify-content: center;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .protocols-grid,
    .offers-grid,
    .coverage-grid,
    .insurance-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .safety-features,
    .warranty-details {
        gap: 20px;
    }

    .safety-feature,
    .warranty-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .safety-feature i,
    .warranty-item .warranty-icon {
        align-self: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    /* Mobile-specific improvements */
    .container {
        padding: 0 15px;
    }

    .quote-form,
    .application-form,
    .contact-form-container {
        padding: 20px;
    }

    .form-section {
        padding-bottom: 20px;
    }

    .service-detail {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .content-image img {
        max-height: 300px;
        object-fit: cover;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .values-grid,
    .commitment-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .requirements-list,
    .preferred-skills {
        padding: 20px;
    }

    .warranty-note,
    .protocol-card,
    .coverage-card,
    .offer-card {
        padding: 20px;
    }
}

/* Tablet responsive design */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content,
    .content-split {
        gap: 40px;
    }

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

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Global color overrides for consistency */
.safety-section,
.warranty-section,
.subcontractor-intro,
.requirements,
.application-form-section,
.quote-section,
.services-detailed {
    background: var(--dark-bg) !important;
}

.safety-section h2,
.safety-section h3,
.safety-section h4,
.warranty-section h2,
.warranty-section h3,
.warranty-section h4,
.subcontractor-intro h2,
.subcontractor-intro h3,
.requirements h2,
.requirements h3,
.requirements-list h3,
.preferred-skills h3,
.application-form-section h2,
.quote-section h2,
.quote-intro h2,
.form-container h2,
.service-header h2,
.service-detail h3,
.service-areas h2,
.safety-protocols h2,
.warranty-coverage h2,
.what-we-offer h2,
.application-process h2,
.form-section h3 {
    color: var(--primary-gold) !important;
}

.safety-section p,
.warranty-section p,
.subcontractor-intro p,
.requirements p,
.requirements-list li,
.preferred-skills li,
.application-form-section p,
.form-container > p,
.quote-intro p,
.service-detail p,
.service-areas > .container > p {
    color: var(--text-muted) !important;
}

.safety-feature i,
.warranty-icon,
.protocol-icon,
.service-header i,
.offer-icon,
.highlight i,
.step-number {
    background: var(--primary-gold) !important;
    color: var(--dark-bg) !important;
}

.safety-feature h4,
.warranty-item h4,
.protocol-card h3,
.offer-card h3,
.step h3,
.coverage-card h3,
.area-card h3 {
    color: var(--primary-gold) !important;
}

.protocol-card,
.offer-card,
.area-card,
.highlight,
.service-detail,
.coverage-card,
.warranty-note,
.quote-form,
.application-form,
.lightbox-content,
.requirements-list,
.preferred-skills {
    background: var(--dark-tertiary) !important;
    border: 1px solid var(--dark-tertiary) !important;
}

.protocol-card:hover,
.offer-card:hover,
.area-card:hover {
    border-color: var(--primary-gold) !important;
}

.safety-protocols,
.warranty-coverage,
.what-we-offer,
.application-process,
.service-areas,
.requirements-content {
    background: var(--dark-secondary) !important;
}

.protocol-card li,
.warranty-note li,
.area-card p,
.step p,
.coverage-card p,
.offer-card p {
    color: var(--text-muted) !important;
}

.protocol-card li::before,
.warranty-note li::before {
    color: var(--primary-gold) !important;
}

.warranty-note {
    background: var(--dark-tertiary) !important;
    border-left-color: var(--primary-gold) !important;
}

.warranty-note h3 {
    color: var(--text-light) !important;
}

.requirements-list i {
    color: var(--success-green) !important;
}

.preferred-skills i {
    color: var(--primary-gold) !important;
}

.highlight span {
    color: var(--text-light) !important;
}

.service-list i {
    color: var(--success-green) !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.scroll-to-top:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Loading Animation */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

body.loaded {
    opacity: 1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .service-card, .feature, .value-card {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--dark-bg);
}
