@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* CSS Variables */
:root {
    --primary-dark: #111827;
    --primary-yellow: #e2bb42;
    --white: #ffffff;
    --gray:#F9FAFB80;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
  font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info span,
.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-yellow);
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.get-quote-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.get-quote-link:hover {
    color: var(--white);
    text-shadow: 0 0 8px var(--primary-yellow);
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    z-index: 100;
    position: relative;
}

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

.logo img {
    height: 75px;
    width: auto;
}

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

.location,
.phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location i,
.phone i {
    font-size: 20px;
    color: var(--primary-yellow);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(250, 204, 21, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location div,
.phone div {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.detail,
.phone-number {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--primary-yellow);
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation */
.main-nav {
    background-color: var(--primary-dark);
    padding: 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 15px 13px;
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    /* letter-spacing: 0.5px; */
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--primary-yellow);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--primary-yellow);
    color: var(--white);
    border-bottom: none;
}

/* Navigation - Mobile Only */
/* Main navigation is visible on desktop, hidden on mobile and shown via toggle */

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

        background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.4) 100%), url(../img/hero.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: transparent;
    color: var(--white);
    padding: 10px 0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge::before,
.hero-badge::after {
    content: '';
    width: 80px;
    height: 2px;
    background-color: var(--primary-yellow);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* .hero-title .highlight {
    color: var(--primary-yellow);
} */

.scroll-indicator {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 20px;
    color: var(--primary-yellow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Sub-page Hero Styles */
.sub-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../img/phome.jpg');
    background-size: cover;
    background-position: center bottom;
/*     background-attachment: fixed; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.sub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    z-index: 1;
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.sub-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sub-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .sub-hero {
        height: 30vh;
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .sub-hero-title {
        font-size: 2.2rem;
    }
    
    .sub-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sub-hero-title {
        font-size: 1.8rem;
    }
    
    .sub-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* About Page Section */
.about-page {
    padding: 80px 0;
    background-color: var(--white);
}

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

.about-text {
    padding-right: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
}

.about-call {
    color: var(--primary-dark);
}

.about-phone {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: var(--transition);
}

.about-phone:hover {
    color: #e6b800;
}

.about-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
}

.about-description p {
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 15px;
}

.about-factors {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}
.wp-block-list{
     list-style: none;
    padding: 0;
    margin: 20px 0 0 0; 
}
.wp-block-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray-600);
    line-height: 1.6;
}

.wp-block-list li::before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.about-factors li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-factors li::before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.about-image {
    position: relative;
    padding-left: 20px;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.image-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-yellow);
}

.dot:hover {
    background-color: var(--primary-yellow);
    transform: scale(1.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-page {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .image-slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .image-slider {
        height: 250px;
    }
    
    .image-dots {
        gap: 6px;
        margin-top: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--gray-100);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-link i {
    transition: var(--transition);
}


/* Reviews Slider - Modified for 3 cards display */
.reviews-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    max-width: calc(33.333% - 20px);
    height: 350px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
}

.review-text-container {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 10px;
    padding-right: 5px;
    position: relative;
    max-height: 150px; /* Limited height for scrollbar */
}

/* Scroll indicator - gradient at the bottom */
.review-text-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-text-container:not(:hover)::-webkit-scrollbar-thumb {
    background: #d1d5db;
}

/* Show gradient only when there is more text to scroll */
.review-text-container.has-overflow::after {
    opacity: 1;
}

/* Custom scrollbar for review text */
.review-text-container::-webkit-scrollbar {
    width: 5px;
}

.review-text-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.review-text-container::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.review-text-container::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-prev,
.slider-next {
    background: var(--primary-yellow);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #eab308;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-yellow);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .services {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}


/* Estimate Section */
.estimate-section {
    background-color: var(--primary-dark);
    padding: 80px 0;
    color: var(--white);
}

.estimate-content {
    text-align: center;
}

.estimate-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.estimate-title .highlight {
    color: var(--primary-yellow);
}

.estimate-form {
    margin-bottom: 60px;
}

.form-row {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    background-color: var(--white);
    color: var(--primary-dark);
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--gray-600);
    font-weight: 500;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.3);
}

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

.form-submit {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.form-submit:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.styles-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.style-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.style-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.style-image {
    height: 200px;
    overflow: hidden;
}

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

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

.style-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 20px 20px 15px;
}

.style-features {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
	    text-align: left;
}

.style-features li {
    color: var(--gray-200);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.style-features li::before {
    content: '•';
    color: var(--primary-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Expert Section */
.expert-section {
    /* background-color: var(--gray-100); */
    padding: 80px 0;
}

.expert-content {
    text-align: center;
}

.expert-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.expert-title .highlight {
    color: var(--primary-yellow);
}

.expert-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

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

.feature-card {
    background-color: var(--gray);
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), #e6b800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0px;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-dark);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 16px;
}

.expert-cta {
    margin-top: 40px;
}

.cta-button-large, .form-submit-new2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button-large:hover, .form-submit-new2:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    gap: 16px;
}
.form-submit-new2{display: block !important;margin:30px auto !important;cursor:pointer;}
.cta-button-large i {
    transition: var(--transition);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-input,
    .form-submit {
        width: 100%;
    }
    
    .styles-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expert-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .estimate-section,
    .expert-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .estimate-title,
    .expert-title {
        font-size: 1.8rem;
    }
    
    .expert-description {
        font-size: 16px;
    }
    
    .cta-button-large {
        padding: 15px 25px;
        font-size: 14px;
    }
}

/* Contact Section */
.contact-section {
    background: #f9fafb;
    padding: 100px 0;
}

.contact-content {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
}

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

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: left;
}

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

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

.contact-form .form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f9fafb;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: white;
}

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

.form-submit-large {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-large:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

.contact-info-section {
    padding: 40px;
}

.info-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-details p {
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
}

.why-choose-section {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #374151;
}

.why-choose-list li i {
    color: var(--primary-yellow);
    margin-right: 12px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    padding: 20px;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transform: scale(1.05);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.footer-address p,
.footer-contact p {
    margin: 5px 0;
    color: #d1d5db;
    font-size: 0.95rem;
}

.accessibility-link {
    margin: 20px 0;
}

.accessibility-link a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

.accessibility-link a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* .social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
} */

.social-link:hover {
    background: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-map {
    padding: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 30px 0;
    background: #0f172a;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #eab308;
}

.footer-bottom-social {
    display: flex;
    gap: 10px;
}

.footer-bottom-social .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

/* Top-Rated Section */
.top-rated-section {
    background: var(--primary-dark);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.top-rated-content {
    max-width: 1000px;
    margin: 0 auto;
}

.top-rated-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.top-rated-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #e5e7eb;
    font-weight: 500;
}

.top-rated-description {
    max-width: 900px;
    margin: 0 auto 50px;
}

.top-rated-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
}

.reviews-content {
    text-align: center;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.reviewer-avatar:nth-child(1) .avatar-letter {
    background: #f97316;
}

.review-card:nth-child(1) .reviewer-avatar {
    background: #f97316;
}

.review-card:nth-child(2) .reviewer-avatar {
    background: #eab308;
}

.review-card:nth-child(3) .reviewer-avatar {
    background: #3b82f6;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.review-date {
    color: #6b7280;
    font-size: 0.9rem;
}

.google-icon {
    color: #4285f4;
    font-size: 1.5rem;
}

.review-rating {
    margin-bottom: 20px;
}

.review-rating i {
    color: var(--primary-yellow);
    margin-right: 3px;
    font-size: 1.1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */
/* New Contact Section */
.contact-section-new {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}
.contact-section-new .etitle{
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    text-align: center;
}
.contact-content-new {
    text-align: left;
    margin-bottom: 60px;
}

.contact-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-yellow {
    color: var(--primary-yellow);
}

.contact-subtitle-new {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 0;
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section-new {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section-title-new {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: left;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-input-new {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input-new:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-textarea-new {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-textarea-new:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.form-submit-new {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-new:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

.contact-info-section-new {
    /* padding: 40px 20px; */
}

.info-section-title-new {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: left;
}

.contact-item-new {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.contact-item-new:hover {
    transform: none;
    box-shadow: none;
}

.contact-icon-new {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
}

.contact-icon-new i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.contact-details-new {
    flex: 1;
}

.contact-details-new h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.contact-details-new p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

/* Ready to Start Your Project Section */
.ready-to-start-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ready-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ready-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ready-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.6) 100%);
    z-index: 2;
}

.ready-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.ready-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ready-title .highlight {
    color: var(--primary-yellow);
}

.ready-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
}

.ready-to-start-section .contact-form-section-new {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.ready-to-start-section .form-section-title-new {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
}

.ready-to-start-section .contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ready-to-start-section .form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ready-to-start-section .form-input-new,
.ready-to-start-section .form-textarea-new {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.ready-to-start-section .form-input-new:focus,
.ready-to-start-section .form-textarea-new:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

.ready-to-start-section .form-submit-new {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ready-to-start-section .form-submit-new:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

/* Responsive Design for Ready to Start Section */
@media (max-width: 768px) {
    .ready-to-start-section {
        min-height: 80vh;
    }
    
    .ready-title {
        font-size: 2.5rem;
    }
    
    .ready-subtitle {
        font-size: 1.1rem;
    }
    
    .ready-to-start-section .contact-form-section-new {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .ready-to-start-section .form-row-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.why-choose-section-new {
    background: #FEFCE8;
    padding: 30px;
    border-radius: 15px;
    border: none;
    margin-top: 40px;
}

.why-choose-title-new {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: left;
}

.why-choose-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list-new li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.why-choose-list-new li i {
    color: var(--primary-yellow);
    font-size: 1rem;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-map {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .contact-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section-new,
    .contact-info-section-new {
        padding: 30px 20px;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-title-new {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .top-rated-title {
        font-size: 2.5rem;
    }
    
    .top-rated-subtitle {
        font-size: 1.1rem;
    }
    
    .reviews-title {
        font-size: 2.2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px;
    }
}

/* Mobile Navigation Improvements */
/* Mobile menu styles removed - clean slate for new header */

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #eab308;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Header scroll effect */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu-close{display: none;}
/* Mobile Header Styles */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-content {
        justify-content: center;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }
    
    .social-links {
        display: none;
    }
    
    .get-quote-link {
        display: none;
    }
    
    .main-header {
        padding: 10px 0;
        position: relative;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header-contact {
        display: none;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-dark);
        z-index: 1000;
        box-shadow: var(--shadow-lg);
        padding-top: 80px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .mobile-menu-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .main-nav .mobile-menu-close {
        display: block;
    }
    
    .mobile-menu-close:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-yellow);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
    }
    
    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-bottom-color: rgba(255, 255, 255, 0.1);
        border-left: 3px solid var(--primary-yellow);
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: var(--white);
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-yellow);
        border-left: 3px solid var(--primary-yellow);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
  
    
    .hero {
        height: 70vh;
        background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(17, 24, 39, 0.6) 100%), url('../img/hero.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
/*     
    .hero-background {
        display: none;
    }
     */
    .hero-background img {
        object-position: center;
    }
    
    .scroll-indicator {
        bottom: 100px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

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

.team-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}
.team-subtitle{text-align: center;}
.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), #f59e0b);
    border-radius: 2px;
}

.team-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), #f59e0b, var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(234, 179, 8, 0.2);
    transition: all 0.4s ease;
}

.team-member:hover .team-member-image {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member .member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-member:hover .member-name {
    color: var(--primary-yellow);
}

.team-member .member-position {
    font-size: 0.95rem;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .member-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-section h2 {
        font-size: 2.2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .team-member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-member .member-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-section h2 {
        font-size: 1.8rem;
    }
    
    .team-section .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .team-member {
        padding: 20px 15px;
    }
    
    .team-member-image {
        width: 100px;
        height: 100px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #000000;
    padding: 40px 0;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
        gap: 40px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    text-transform: none;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 25px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Contact Page Styles */

/* Contact Page Header */
.contact-page-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-page-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Page Content Layout */
.contact-page-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-container {
    flex: 1 1 60%;
    min-width: 300px;
}

.contact-info-container {
    flex: 1 1 30%;
    min-width: 300px;
}

/* Form Styles */
.contact-page-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

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

/* .form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
} */

.form-input-new:focus,
.form-textarea-new:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
    outline: none;
}

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

.form-submit-new {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 100%;
}

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

.form-submit-new:active {
    transform: translateY(0);
}

/* File Upload Area */
.file-upload-container {
    margin-top: 20px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.05);
}

.file-upload-area i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.file-upload-area p {
    margin: 0;
    color: var(--text-color);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Contact Info Card */
.contact-info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex: 0 0 40px;
    height: 40px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-icon i {
    color: var(--primary-color);
    font-size: 18px;
}

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

.contact-info-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 5px;
}

.contact-info-text p,
.contact-info-text a {
    margin: 0;
    color: var(--text-color-light);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: var(--primary-color);
}

/* Social Media Links */
.social-media-links {
    margin-top: 30px;
}

.social-media-links h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-page-section {
        padding: 60px 0;
    }
    
    .contact-page-content {
        flex-direction: column;
    }
    
    .contact-form-container,
    .contact-info-container {
        flex: 1 1 100%;
    }
    
    .contact-info-container {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page-title {
        font-size: 28px;
    }
    
    .contact-page-subtitle {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .contact-page-form,
    .contact-info-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-page-section {
        padding: 40px 0;
    }
    
    .contact-page-header {
        margin-bottom: 30px;
    }
    
    .file-upload-area {
        padding: 20px;
    }
}

  /* Stilovi za novu kontakt sekciju */
        .contact-info-row {
            display: flex;
            margin-bottom: 50px;
            gap: 40px;
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info-col {
            flex: 1;
        }
        
        .contact-heading {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .contact-subheading {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }
        
        .contact-text {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
        }
        
        .company-info {
            margin-bottom: 25px;
        }
        
        .company-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .company-address {
            margin-bottom: 5px;
            color: #555;
        }
        
        .contact-link {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .contact-detail {
            margin-bottom: 8px;
        }
        
     
        
        .payment-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.2s;
            margin-top: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .payment-button:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        
        @media (max-width: 768px) {
            .contact-info-row {
                flex-direction: column;
                padding: 20px;
            }
            
            .contact-heading {
                font-size: 22px;
            }
            
            .contact-subheading {
                font-size: 16px;
            }
        }
/* CSS za nove sekcije - potpuno nova imena klasa */

/* Top Rated Remodeler Section */
.top-remodeler-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.top-remodeler-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.top-remodeler-text {
    flex: 1;
}

.top-remodeler-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.top-remodeler-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.top-remodeler-image img:hover {
    transform: scale(1.03);
}

.top-remodeler-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.2;
}

.top-remodeler-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 25px;
    font-weight: 500;
}

.top-remodeler-description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.6;
}

.top-remodeler-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    font-weight: bold;
} */

.gold-circle {
    background-color: #FACC15;
    color: #111827;
}

.feature-text {
    font-size: 1rem;
    color: #111827;
    font-weight: 500;
}

.top-remodeler-cta {
    display: inline-block;
    background-color: #FACC15;
    color: #111827;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.top-remodeler-cta:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

/* Remodeling Process Section */
.remodeling-process-section {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 15px;
}

.step-description {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.process-cta-container {
    margin-top: 40px;
}

.process-cta {
    display: inline-block;
    background-color: #FACC15;
    color: #111827;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.process-cta:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 204, 21, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .top-remodeler-content {
        flex-direction: column-reverse;
    }
    
    .top-remodeler-text,
    .top-remodeler-image {
        flex: none;
        width: 100%;
    }
    
    .top-remodeler-title {
        font-size: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-remodeler-section,
    .remodeling-process-section {
        padding: 60px 0;
    }
    
    .top-remodeler-title {
        font-size: 1.8rem;
    }
    
    .top-remodeler-subtitle {
        font-size: 1.1rem;
    }
    
    .process-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .top-remodeler-section,
    .remodeling-process-section {
        padding: 40px 0;
    }
    
    .top-remodeler-title {
        font-size: 1.5rem;
    }
    
    .top-remodeler-subtitle {
        font-size: 1rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
}
.custom-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    max-width: 600px;
}

.custom-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f9f9f9;
    border-left: 4px solid #ffd700; /* zlatna traka sa leve strane */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.custom-feature-item:hover {
    transform: translateY(-2px);
}

.custom-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: #ffd700;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.custom-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
 /* Kitchen Section Styles */
        .kitchen-section {
            padding: 80px 0;
            background-color: var(--white);
            position: relative;
        }

        .kitchen-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .kitchen-image {
            flex: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .kitchen-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .kitchen-image:hover img {
            transform: scale(1.03);
        }

        .kitchen-content {
            flex: 1;
        }

        .kitchen-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .kitchen-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 25px;
        }

        .kitchen-locations {
            margin-bottom: 20px;
        }

        .kitchen-locations span {
            color: var(--primary-yellow);
            font-weight: 600;
        }

        .kitchen-description {
            margin-bottom: 30px;
            color: var(--gray-600);
        }

        .kitchen-cta {
            display: inline-block;
            background-color: var(--primary-yellow);
            color: var(--primary-dark);
            padding: 12px 25px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

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

        /* Team Member Section Styles */
        .team-member-section {
            padding: 80px 0;
            background-color: var(--gray-100);
        }

        .team-member-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .team-member-image {
            flex: 1;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            max-width: 400px;
            margin: 0 auto;
        }

        .team-member-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .team-member-image:hover img {
            transform: scale(1.05);
        }

        .team-member-content {
            flex: 1;
        }

        .team-member-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .team-member-subtitle {
            font-size: 18px;
            color: var(--gray-600);
            margin-bottom: 25px;
        }

        .team-member-description {
            margin-bottom: 30px;
            color: var(--gray-600);
        }

        .team-member-highlight {
            color: var(--primary-yellow);
            font-weight: 600;
        }

        .team-member-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            box-shadow: var(--shadow-sm);
        }

        .feature-icon {
            width: 30px;
            height: 30px;
            background-color: var(--primary-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
        }

        .team-member-cta {
            display: inline-block;
            background-color: var(--primary-yellow);
            color: var(--primary-dark);
            padding: 12px 25px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .team-member-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* Countertops Section Styles */
        .countertops-section {
            padding: 80px 0;
            background-color: var(--white);
        }

        .countertops-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 40px;
            text-align: center;
        }

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

        .countertop-card {
            text-align: center;
        }

        .countertop-image {
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .countertop-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .countertop-level {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 15px;
        }

        .countertop-description {
            color: var(--gray-600);
        }

                /* Kitchen Services Section */
        .kitchen-services-section {
            padding: 80px 0;
            background-color: var(--gray-100);
        }

        .services-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 50px;
        }

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

        .service-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

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

        .service-image {
            height: 200px;
            overflow: hidden;
        }

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

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

        .service-content {
            padding: 20px;
        }

        .service-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
		.service-title a{
			font-size: 18px;
			font-weight: 700;
			color: var(--primary-dark);
			margin-bottom: 10px;
			    text-decoration: none;
		}

        .service-description {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        /* Responsive adjustments for services section */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .kitchen-services-section {
                padding: 60px 0;
            }
        }
        /* Responsive Styles */
        @media (max-width: 992px) {
            .kitchen-container,
            .team-member-container {
                flex-direction: column;
            }

            .kitchen-image,
            .kitchen-content,
            .team-member-image,
            .team-member-content {
                flex: none;
                width: 100%;
        height: auto;
				        max-width: 320px;
        max-height: 320px;
				
            }

            .countertops-grid {
                grid-template-columns: repeat(1, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .kitchen-section,
            .team-member-section,
            .countertops-section {
                padding: 60px 0;
            }

            .team-member-features {
                flex-direction: column;
                gap: 15px;
            }
        }

.imgbre{
	  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
  /* Page Info Section Styles */
        .page-info {
            padding: 80px 0;
            background-color: var(--gray-100);
        }

        .page-info .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .page-info-content {
            flex: 1;
            max-width: 600px;
        }

        .page-info-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-info-description {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

        .page-info-description span {
            color: var(--primary-yellow);
            font-weight: 600;
        }

        .page-info-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .page-feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background-color: var(--primary-yellow);
            color: var(--primary-dark);
            border-radius: 50%;
            font-size: 0.8rem;
            font-weight: bold;
/* 			margin-bottom: 20px; */
        }

        .page-info-cta {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background-color: var(--primary-yellow);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .page-info-cta:hover {
            background-color: #e3b712;
            transform: translateY(-2px);
        }

        .page-info-image {
            flex: 1;
            max-width: 380px;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .page-info-image img {
            width: 100%;
			max-width:380px;
            height: auto;
            display: block;
			  border-radius:50%;
            transition: var(--transition);
			
        }
.mt20{margin-top:20px;}
.mt40{margin-top:40px;}
        /* Page About Section Styles */
        .page-about {
            padding: 80px 0;
            background-color: var(--white);
        }

        .page-about .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .page-about-content {
            flex: 1;
            max-width: 600px;
        }

        .page-about-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-about-description {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 20px;
        }

        .page-about-description span {
            color: var(--primary-yellow);
            font-weight: 600;
        }

        .page-about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .page-about-cta {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background-color: var(--primary-yellow);
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .page-about-cta:hover {
            background-color: #e3b712;
            transform: translateY(-2px);
        }

        .page-about-image {
            flex: 1;
            max-width: 500px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .page-about-image img {
            width: 100%;
            height: auto;
            display: block;
			
            transition: var(--transition);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-info .container,
            .page-about .container {
                flex-direction: column-reverse;
                gap: 30px;
            }

            .page-info-content,
            .page-info-image,
            .page-about-content,
            .page-about-image {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .page-info,
            .page-about {
                padding: 60px 0;
            }

            .page-info-title,
            .page-about-title {
                font-size: 2rem;
            }

            .page-feature-item {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
			.about-images img{max-width:100%;}
			.about-imagess img{max-width:100%;}

        }
.footer-contact p a{color:#fff;text-decoration:none;}
/* Dodajte ove stilove u vaš CSS fajl */
.footer-bottom-content a {
    color: #ffffff; /* Bela boja za bolji kontrast */
    text-decoration: underline;
    font-weight: 500;
}

.footer-bottom-content a:hover {
    color: #f0f0f0; /* Svetlija boja na hover */
    text-decoration: none;
}

.footer-bottom-content a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}
/* Contact Form 7 specifični stilovi */
.wpcf7-form {
    margin: 0;
    padding: 0;
}

.wpcf7-form .form-row-new {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.wpcf7-form .form-row-new .form-input-new {
    flex: 1;
}

.wpcf7-form .form-input-new,
.wpcf7-form .form-textarea-new {
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form .form-submit-new {
    border: none;
    cursor: pointer;
}

/* Uklanjanje default Contact Form 7 stilova */
.wpcf7-form p {
    margin: 0;
}

.wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 10px;
    border-radius: 4px;
}
.mt20{margin-top:20px}
 .hcgallery-section {
            max-width: 1200px;
            margin: 0 auto;
	 padding:20px;
        }

        .hcgallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .hcgallery-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .hcgallery-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 400;
        }

        .hcgallery-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            height: 600px;
        }

        .hcgallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Grid Layout */
        .hcgallery-item:nth-child(1) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg1.jpg');
        }

        .hcgallery-item:nth-child(2) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg2.jpg');
        }

        .hcgallery-item:nth-child(3) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg3.jpg');
        }

        .hcgallery-item:nth-child(4) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg4.jpg');
        }

        .hcgallery-item:nth-child(5) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg5.jpg');
        }

        .hcgallery-item:nth-child(6) {
            flex: 1;
            min-width: 300px;
            background-image: url('../img/wg6.jpg');
        }

        /* Overlay */
        .hcgallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            transition: all 0.3s ease;
        }

        .hcgallery-category {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .hcgallery-item-title {
            font-size: 1.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hover Effects */
        .hcgallery-item:hover {
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .hcgallery-item:hover .hcgallery-overlay {
            background: linear-gradient(135deg, rgba(218,165,32,0.9), var(--primary-yellow));
        }

        .hcgallery-item:hover .hcgallery-item-title {
            transform: translateY(-10px);
        }

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

        /* Special styling for first item (Mediterranean Kitchen) */
/*         .hcgallery-item:nth-child(1) .hcgallery-overlay {
            background: linear-gradient(135deg, rgba(218,165,32,0.8), var(--primary-yellow));
        } */

        .hcgallery-item:nth-child(1):hover .hcgallery-overlay {
            background: linear-gradient(135deg, rgba(218,165,32,0.95), var(--primary-yellow));
        }

       @media (max-width: 768px) {
            .hcgallery-grid {
                flex-direction: column;
                height: auto;
            }

            .hcgallery-item {
                height: 250px !important;
                min-width: 100% !important;
                flex: none !important;
                background-size: cover !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
            }

            .hcgallery-title {
                font-size: 2rem;
            }

            .hcgallery-item-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .hcgallery-grid {
                height: auto;
            }

            .hcgallery-item {
                height: 200px !important;
                flex: 1 1 calc(50% - 10px) !important;
                background-size: cover !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
            }
        }
/* HR Services Section */
    .hr-services-section {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 20px;
    }

    .hr-services-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .hr-services-title {
        font-size: 2.2rem;
        color: #333;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .hr-services-subtitle {
        font-size: 1.1rem;
        color: #666;
        font-weight: 400;
    }

    .hr-services-grid {
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hr-services-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex: 1 1 calc(25% - 15px);
        height: 200px;
        min-height: 200px;
    }

    /* Background images for services */
    .hr-services-item:nth-child(1) {
        background-image: url('../img/hr1.jpg');
    }

    .hr-services-item:nth-child(2) {
        background-image: url('../img/hr2.jpg');
    }

    .hr-services-item:nth-child(3) {
        background-image: url('../img/hr3.jpg');
    }

    .hr-services-item:nth-child(4) {
        background-image: url('../img/hr4.png');
    }

    .hr-services-item:nth-child(5) {
        background-image: url('../img/hr5.jpg');
    }

    .hr-services-item:nth-child(6) {
        background-image: url('../img/hr6.jpg');
    }

    .hr-services-item:nth-child(7) {
        background-image: url('../img/hr7.jpg');
    }

    .hr-services-item:nth-child(8) {
        background-image: url('../img/hr8.jpg');
    }

    /* Overlay */
    .hr-services-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        transition: all 0.3s ease;
    }

    .hr-services-item-title {
        font-size: 1.3rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Hover Effects */
    .hr-services-item:hover {
        transform: scale(1.05);
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .hr-services-item:hover .hr-services-overlay {
        background: linear-gradient(135deg, rgba(218,165,32,0.8), var(--primary-yellow));
    }

    .hr-services-item:hover .hr-services-item-title {
        transform: translateY(-5px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hr-services-grid {
            gap: 15px;
        }

        .hr-services-item {
            flex: 1 1 calc(50% - 7.5px);
            height: 150px;
            min-height: 150px;
        }

        .hr-services-title {
            font-size: 1.8rem;
        }

        .hr-services-item-title {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 480px) {
        .hr-services-item {
            height: 120px;
            min-height: 120px;
        }

        .hr-services-item-title {
            font-size: 1rem;
        }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
        .hr-services-item {
            flex: 1 1 calc(50% - 10px);
            height: 180px;
        }
    }

   .service-request-section {
        position: relative;
        min-height: 55vh;
        background-image: url('../img/shero.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        padding: 80px 0;
    }
    
    .service-request-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
/*         background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.6)); */
		    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
        z-index: 1;
    }
    
    .service-request-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }
    
    .service-request-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
    .service-request-text {
            color: white;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
    padding: 40px 20px;
    border-radius: 8px;
    }
    
    .service-request-title {
   font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .service-request-description {
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .service-request-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .service-request-form-wrapper {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
    }
    
    .service-request-form-group {
        margin-bottom: 20px;
    }
    
    .service-request-input,
    .service-request-textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f9fafb;
        font-family: inherit;
    }
    
    .service-request-input:focus,
    .service-request-textarea:focus {
        outline: none;
        border-color: var(--primary-yellow, #DAA520);
        background: white;
        box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
    }
    
    .service-request-textarea {
        resize: vertical;
        height: 120px;
    }
    
    .service-request-btn {
        width: 100%;
        background: var(--primary-yellow, #DAA520);
        color: white;
        border: none;
        padding: 18px 30px;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .service-request-btn:hover {
        background: #B8860B;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
    }
    
    .service-request-btn:active {
        transform: translateY(0);
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .service-request-content {
            gap: 40px;
        }
        
        .service-request-title {
            font-size: 3rem;
        }
    }
    
    @media (max-width: 768px) {
        .service-request-section {
            background-attachment: scroll;
            min-height: auto;
            padding: 60px 0;
        }
        
        .service-request-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }
        
        .service-request-title {
            font-size: 2.5rem;
        }
        
        .service-request-description {
            font-size: 1.2rem;
        }
        
        .service-request-form-wrapper {
            padding: 30px 25px;
        }
    }
    
    @media (max-width: 480px) {
        .service-request-container {
            padding: 0 15px;
        }
        
        .service-request-title {
            font-size: 2rem;
        }
        
        .service-request-description {
            font-size: 1.1rem;
        }
        
        .service-request-form-wrapper {
            padding: 25px 20px;
        }
        
        .service-request-input,
        .service-request-textarea {
            padding: 12px 15px;
        }
        
        .service-request-btn {
            padding: 15px 25px;
            font-size: 1rem;
        }
    }
.page-about-description a{color:var( --primary-yellow)}

/* FAQ Info Section */
.faqinfo {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faqinfo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faqinfo-text {
    max-width: 900px;
    width: 100%;
}

.faqinfo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.faqinfo p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
}

.faqinfo p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqinfo {
        padding: 60px 0;
    }
    
    .faqinfo h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .faqinfo p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .faqinfo .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .faqinfo h2 {
        font-size: 1.75rem;
    }
    
    .faqinfo p {
        font-size: 0.95rem;
    }
}

/* FAQN Section */
.faqn-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.faqn-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.faqn-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faqn-item {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faqn-item:hover {
    transform: translateY(-2px);
}

.faqn-question {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #2c3e50;
    color: white;
    cursor: pointer;
}

.faqn-icon {
    background: #f39c12;
    color: #2c3e50;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.faqn-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faqn-answer {
    padding: 25px;
    background: white;
}

.faqn-answer p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faqn-section {
        padding: 60px 0;
    }
    
    .faqn-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faqn-question {
        padding: 20px;
    }
    
    .faqn-question h3 {
        font-size: 1.1rem;
    }
    
    .faqn-answer {
        padding: 20px;
    }
    
    .faqn-answer p {
        font-size: 1rem;
    }
    
    .faqn-icon {
        width: 25px;
        height: 25px;
        margin-right: 12px;
    }
}

@media (max-width: 480px) {
    .faqn-title {
        font-size: 1.75rem;
    }
    
    .faqn-question {
        padding: 15px;
    }
    
    .faqn-answer {
        padding: 15px;
    }
    
    .faqn-question h3 {
        font-size: 1rem;
    }
}
.ikk-info {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

.ikk-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ikk-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ikk-info-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ikk-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ikk-info-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f4f1e8, #e8e2d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.ikk-info-item:hover .ikk-info-icon {
    background: linear-gradient(135deg, #C5A572, #B8956A);
}

.ikk-info-item:hover .ikk-info-icon svg path {
    stroke: white;
}

.ikk-info-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.ikk-info-cta {
    margin-top: 40px;
}

.ikk-info-button {
    display: inline-block;
    background: linear-gradient(135deg, #C5A572, #B8956A);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
}

.ikk-info-button:hover {
    background: linear-gradient(135deg, #B8956A, #A68660);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ikk-info {
        padding: 60px 0;
    }
    
    .ikk-info-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .ikk-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .ikk-info-item {
        padding: 30px 15px;
    }
    
    .ikk-info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .ikk-info-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .ikk-info-item-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .ikk-info-container {
        padding: 0 15px;
    }
    
    .ikk-info-title {
        font-size: 1.8rem;
    }
    
    .ikk-info-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
.custom-remodeling-bre {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.custom-remodeling-bre-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.custom-remodeling-bre-text {
    flex: 1;
    max-width: 600px;
}

.custom-remodeling-bre-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.custom-remodeling-bre-description {
    margin-bottom: 40px;
}

.custom-remodeling-bre-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.custom-remodeling-bre-description p:last-child {
    margin-bottom: 0;
}

.custom-remodeling-bre-cta {
    margin-top: 30px;
}

.custom-remodeling-bre-button {
    display: inline-block;
    background: linear-gradient(135deg, #C5A572, #B8956A);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 165, 114, 0.3);
    text-transform: lowercase;
}

.custom-remodeling-bre-button:hover {
    background: linear-gradient(135deg, #B8956A, #A68660);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
    color: white;
    text-decoration: none;
}

.custom-remodeling-bre-image {
    flex: 1;
    max-width: 500px;
}

.custom-remodeling-bre-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.custom-remodeling-bre-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .custom-remodeling-bre-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .custom-remodeling-bre-text {
        max-width: 100%;
    }
    
    .custom-remodeling-bre-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .custom-remodeling-bre {
        padding: 60px 0;
    }
    
    .custom-remodeling-bre-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .custom-remodeling-bre-description p {
        font-size: 1rem;
    }
    
    .custom-remodeling-bre-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .custom-remodeling-bre-container {
        padding: 0 15px;
    }
    
    .custom-remodeling-bre-title {
        font-size: 1.8rem;
    }
    
    .custom-remodeling-bre-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/* Location Info Section */
.loc-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.loc-info-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.loc-info-image {
    flex: 1;
    max-width: 500px;
}

.loc-info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loc-info-text {
    flex: 1;
    padding-left: 20px;
}

.loc-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.loc-info-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.loc-info-cta {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 20px;
}

.loc-info-cta:hover {
    background: linear-gradient(135deg, #b8941f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loc-info {
        padding: 60px 0;
    }
    
    .loc-info-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .loc-info-text {
        padding-left: 0;
    }
    
    .loc-info-title {
        font-size: 2rem;
    }
    
    .loc-info-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loc-info-title {
        font-size: 1.8rem;
    }
    
    .loc-info-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}