/* Base Styles */
:root {
    /* Color Scheme */
    --primary-color: #1a1a1a; /* Black */
    --secondary-color: #c19a6b; /* Gold */
    --accent-color: #8b7355; /* Brown */
    --light-color: #f8f5f0; /* Off-white */
    --dark-color: #2c2c2c; /* Dark gray */
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e6e6e6;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 30px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background-color: white;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-icon {
    margin-right: 12px;
}

.logo-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: 2px;
}

/* Logo Image Styles */
.logo-image {
    display: flex;
    align-items: center;
}

.logo-image img {
    height: 50px; /* Adjust based on your logo size */
    width: auto;
    transition: var(--transition);
}

.logo:hover .logo-image img {
    transform: scale(1.05);
}

/* Footer Logo */
.footer-logo .logo-image img {
    height: 40px;
    filter: brightness(0) invert(1); /* Makes logo white for dark footer */
}

.footer-logo:hover .logo-image img {
    transform: scale(1.05);
    filter: brightness(0) invert(79%) sepia(31%) saturate(586%) hue-rotate(3deg) brightness(103%) contrast(96%);
    /* This makes the logo gold on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image img {
        height: 40px;
    }
    
    .footer-logo .logo-image img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .logo-image img {
        height: 35px;
    }
    
    .footer-logo .logo-image img {
        height: 30px;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.dropdown > a i {
    font-size: 0.8rem;
    margin-left: 5px;
}

.btn-quote {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--secondary-color);
}

.btn-quote:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    min-width: 180px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--secondary-color);
    z-index: -1;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 4rem;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--accent-color);
}

/* Portfolio Preview */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 25px;
    background-color: white;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-info {
    background-color: var(--secondary-color);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.portfolio-item:hover .portfolio-category {
    color: white;
}

.portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.portfolio-item:hover .portfolio-info h3,
.portfolio-item:hover .portfolio-info p {
    color: white;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.testimonial {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 60px;
    position: relative;
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.slider-btn:hover {
    color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    min-width: 180px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-bottom: 25px;
}

.footer-logo .logo-icon i {
    color: var(--secondary-color);
}

.footer-logo .logo-main {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: var(--font-body);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
    color: white;
}

.footer-social h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-social .social-icons a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social .social-icons a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Page Header (for inner pages) */
.page-header {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page Specific */
.service-category {
    margin-bottom: 80px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-item-detail {
    background-color: white;
    padding: 40px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-item-detail:hover {
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item-detail ul {
    list-style: none;
    margin-top: 15px;
}

.service-item-detail ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-item-detail ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--secondary-color);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background-color: white;
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: white;
    padding: 50px;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    margin-top: 80px;
}

.map-placeholder {
    height: 400px;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    text-align: center;
    padding: 40px;
    background-color: white;
    z-index: 2;
}

.map-content i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.map-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}
/* About Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.highlight-box {
    background: var(--light-color);
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.highlight-box i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.highlight-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    padding-left: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.member-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-image:hover img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    background: white;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-role {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Page Specific */
.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.category-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.support-services {
    margin-top: 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.support-item {
    background: white;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.support-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.support-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step-simple {
    text-align: center;
    padding: 30px 20px;
    background: white;
    transition: var(--transition);
}

.process-step-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step-simple .step-number {
    margin: 0 auto 20px;
}

.process-step-simple h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.process-step-simple p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Portfolio Page Specific */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.overlay-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-content i {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.client-details span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item-large {
    padding: 40px 20px;
    background: white;
    transition: var(--transition);
	border-top: 3px solid var(--secondary-color);
}

.stat-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-item-large .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-item-large .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}
/* Responsive styles */
@media (max-width: 992px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .stat-item-large .stat-number {
        font-size: 2.5rem;
    }
}


/* Thank You Page Styles */
.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thank-you-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.thank-you-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.confirmation-details {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: left;
}

.confirmation-details h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.confirmation-details ul {
    list-style: none;
}

.confirmation-details li {
    padding: 10px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-color);
    margin-bottom: 10px;
}

.confirmation-details li i {
    position: absolute;
    left: 0;
    top: 12px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-options {
    margin-top: 40px;
}

.contact-options h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 15px;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* FAQ Section Fix - Ensure answers are visible when active */
.faq-item .faq-answer {
    display: none;
    padding: 0 20px;
    background: white;
}

.faq-item.active .faq-answer {
    display: block;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    animation: fadeIn 0.3s ease;
}

.faq-question {
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 0;
}

.faq-item:not(:last-child) {
    margin-bottom: 15px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Specific */
.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 50%;
}

.contact-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.business-hours {
    background: white;
    padding: 30px;
    margin-top: 40px;
}

.business-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hours-list {
    display: grid;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.hour-item:last-child {
    border-bottom: none;
}

.quote-form {
    margin-top: 30px;
}

.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-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(193, 154, 107, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.location-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.location-info ul {
    list-style: none;
}

.location-info li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.location-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-question h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .values-grid,
    .support-grid,
    .process-steps,
    .portfolio-gallery,
    .testimonial-grid,
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .support-grid,
    .process-steps,
    .portfolio-gallery,
    .testimonial-grid,
    .stats-section,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px;
    }
}


/* Make all text justified throughout the website */
body,
.container,
.section,
.section-content,
.about-text,
.service-card p,
.service-item-detail p,
.portfolio-info p,
.testimonial-content p,
.contact-content p,
.footer-section p,
.footer-contact p,
.contact-text p,
.business-hours p,
.form-note,
.highlight-box p,
.member-info p,
.step-content p,
.value-card p,
.support-content p,
.process-step-simple p,
.testimonial-card p,
.faq-answer p,
.location-info li,
.page-header p,
.hero-subtitle,
.section-subtitle,
.contact-info p,
.client-info span,
.member-role,
.stat-label,
.portfolio-category,
.overlay-content p,
.client-details span,
.hour-item span,
.form-group label,
.faq-question h4,
.location-info h4 {
    text-align: justify !important;
}

/* Specific elements that should remain centered */
.section-title,
.section-header.text-center h2,
.section-header.text-center p,
.text-center h1,
.text-center h2,
.text-center h3,
.text-center h4,
.text-center .btn,
.hero-title,
.hero-buttons,
.cta-content h2,
.cta-content p,
.cta-buttons,
.page-header h1,
.page-header p,
.testimonial-content,
.client-info,
.member-info,
.value-card,
.support-item,
.process-step-simple,
.testimonial-card,
.portfolio-overlay .overlay-content,
.footer-bottom p,
.footer-links-bottom,
.slider-controls,
.filter-btn,
.logo,
.footer-logo,
.nav-links,
.btn-quote,
.menu-toggle,
.scroll-indicator,
.contact-icon,
.service-icon,
.category-icon,
.support-icon,
.step-number,
.quote-icon,
.map-content,
.cta-buttons .btn,
.footer-social h5,
.social-icons,
.form-submit .btn,
.faq-question,
.hour-item,
.portfolio-filter,
.slider-dots,
.client-avatar,
.member-image,
.member-overlay,
.logo-image,
.about-image,
.image-wrapper,
.portfolio-image,
.map-placeholder,
.contact-item,
.contact-icon {
    text-align: center !important;
}

/* Lists and special elements */
.service-features li,
.service-column ul li,
.service-item-detail ul li,
.footer-links li,
.footer-links-bottom a,
.nav-links li,
.dropdown-menu li,
.process-step,
.step-content,
.contact-item,
.hour-item {
    text-align: left !important;
}

/* Headings that should remain left-aligned */
h1:not(.hero-title):not(.page-header h1):not(.cta-content h2),
h2:not(.section-title):not(.cta-content h2),
h3:not(.category-title),
h4:not(.footer-col h4),
h5,
h6,
.contact-info h2,
.business-hours h3,
.quote-form h3,
.location-info h4,
.faq-question h4,
.service-card h3,
.service-item-detail h4,
.portfolio-info h3,
.client-info h4,
.member-info h3,
.value-card h3,
.support-content h4,
.process-step-simple h3,
.testimonial-card h4,
.overlay-content h3,
.contact-content h4,
.footer-col h4 {
    text-align: left !important;
}

/* Form elements */
.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input {
    text-align: left !important;
}

/* Numbers and stats */
.stat-number,
.stat-item-large .stat-number {
    text-align: center !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* On mobile, keep most text left-aligned for better readability */
    body,
    .about-text p,
    .service-card p,
    .service-item-detail p,
    .testimonial-content p,
    .contact-content p,
    .footer-section p {
        text-align: left !important;
    }
    
    /* Center these specifically on mobile */
    .section-header.text-center h2,
    .section-header.text-center p,
    .text-center h1,
    .text-center h2,
    .text-center h3,
    .cta-content h2,
    .cta-content p {
        text-align: center !important;
    }
}

/* Force justify for paragraph elements specifically */
p:not(.hero-subtitle):not(.section-subtitle):not(.page-header p):not(.cta-content p) {
    text-align: justify !important;
    text-justify: inter-word;
}

/* For better justification quality */
.text-justified {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* Apply to main content areas */
.about-text,
.service-card,
.service-item-detail,
.portfolio-info,
.testimonial-content,
.contact-content,
.footer-section,
.business-hours,
.highlight-box,
.member-info,
.step-content,
.value-card,
.support-content,
.process-step-simple,
.testimonial-card,
.faq-answer,
.location-info {
    text-align: justify;
    text-justify: inter-word;
}

/* For numbered lists and bullet points */
.service-features,
.service-column ul,
.service-item-detail ul,
.footer-links,
.location-info ul {
    text-align: left;
}

/* Button text remains centered */
.btn,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-quote,
.filter-btn,
.slider-btn {
    text-align: center !important;
}

/* Navigation text */
.nav-links a,
.dropdown-menu a,
.footer-links a,
.footer-links-bottom a {
    text-align: left !important;
}