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

:root {
    --primary-color: #1a2332;
    --secondary-color: #d4a960;
    --accent-color: #e8c68a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --background-light: #f5f7fa;
    --background-dark: #0d1117;
    --border-color: #e0e0e0;
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2a3442 100%);
    --gradient-gold: linear-gradient(135deg, #d4a960 0%, #e8c68a 100%);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 0;
    text-align: center;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.75;
}

.navbar {
    background: var(--gradient-primary);
    padding: 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    min-width: 50px;
}

.logo-subtext {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    isolation: isolate;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-menu a span {
    position: relative;
    z-index: 1;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

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

.social-links a {
    color: white;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 0;
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-links a:hover svg {
    fill: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10,25,41,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

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

.hero-logo {
    font-size: 140px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 0 80px rgba(255, 215, 0, 0.5);
    animation: glow 3s ease-in-out infinite;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    margin-bottom: 25px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-credentials {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    border: 2px solid transparent;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.about-section,
.services-section,
.why-choose-section {
    padding: 80px 0;
}

.about-section {
    background: white;
}

.services-section {
    background: var(--background-light);
}

.why-choose-section {
    background: white;
}

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

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-content h2 {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.section-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 98% 0, 100% 5%, 100% 100%, 2% 100%, 0 95%);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
}

.image-placeholder span {
    position: relative;
    z-index: 1;
}

.section-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    clip-path: polygon(0 0, 98% 0, 100% 5%, 100% 100%, 2% 100%, 0 95%);
    display: block;
}

.service-image-real {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Services Grid Section */
.services-grid-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.services-grid-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
    position: relative;
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 50px 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 95% 0, 100% 10%, 100% 100%, 5% 100%, 0 90%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
    transition: transform 0.4s;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

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

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    position: relative;
}

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

.cta-button-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.cta-button-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: var(--background-dark);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
}

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

.contact-info h2 {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-details a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.social-links-footer a {
    color: white;
    transition: all 0.4s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
}

.social-links-footer a:hover {
    background: var(--gradient-gold);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.social-links-footer a svg {
    transition: all 0.3s;
}

.social-links-footer a:hover svg {
    fill: var(--primary-color);
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 0;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    clip-path: polygon(0 0, 98% 0, 100% 3%, 100% 100%, 2% 100%, 0 97%);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-form p {
    margin-bottom: 30px;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}

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

.contact-form input,
.contact-form textarea {
    padding: 18px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 0;
    font-family: inherit;
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    color: white;
    transition: all 0.3s;
    clip-path: polygon(0 0, 98% 0, 100% 8%, 100% 100%, 2% 100%, 0 92%);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.submit-button {
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 0;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

.form-note {
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a2f3d;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: var(--primary-color);
    padding: 60px 0 40px;
    text-align: center;
    color: white;
}

.testimonials-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.star-rating {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.testimonials-hero p {
    font-size: 18px;
    font-weight: 600;
}

.google-rating {
    background: white;
    padding: 40px 0;
}

.rating-box {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rating-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.rating-stars {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 10px 0;
}

.google-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.google-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.testimonials-grid {
    background: var(--background-light);
    padding: 60px 0;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 13px;
    color: #999;
}

.customer-satisfaction {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.customer-satisfaction h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.customer-satisfaction p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Services Page Styles */
.page-hero {
    background: var(--primary-color);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.services-detail-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

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

/* ===== Expandable Service Cards ===== */
.svc-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    border-color: rgba(255,215,0,0.35);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.svc-card.is-open {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.svc-card-front {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.svc-card-icon {
    font-size: 48px;
    margin-bottom: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.svc-card-titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.svc-card-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.svc-card-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
}

.svc-card-btn {
    background: none;
    border: 1px solid rgba(255,215,0,0.5);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
    margin-top: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.svc-card-btn:hover,
.svc-card.is-open .svc-card-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.svc-btn-chevron {
    transition: transform 0.3s;
    display: inline-block;
    font-size: 14px;
}

.svc-card.is-open .svc-btn-chevron {
    transform: rotate(180deg);
}

.svc-card-body {
    padding: 20px 24px 24px;
    color: white;
    font-size: 14px;
    line-height: 1.75;
    animation: cardExpand 0.25s ease;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.svc-card-body-photo {
    margin-bottom: 16px;
}

.svc-card-body-text {
    /* text content */
}

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

.svc-card-body p {
    margin: 0 0 12px;
    color: rgba(255,255,255,0.88);
}

.svc-card-body p a {
    color: var(--secondary-color);
}

.svc-card-body .service-list {
    margin-top: 14px;
    grid-template-columns: 1fr;
    color: rgba(255,255,255,0.85);
}

.svc-card-close {
    display: inline-block;
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    cursor: pointer;
    margin-top: 18px;
    padding: 0;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.svc-card-close:hover {
    color: rgba(255,255,255,0.7);
}

/* Card photo styles */
.card-expand-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.card-expand-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border-radius: 8px;
    overflow: hidden;
}

.card-expand-photo-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-expand-photo {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    .svc-card-body {
        padding: 16px;
    }
}

/* About Page Styles */
.about-detail-section {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse > * {
    direction: ltr;
}

.about-credentials {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.about-credentials li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-credentials li:last-child {
    border-bottom: none;
}

.about-credentials li strong {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .section-grid.reverse {
        direction: ltr;
    }

    .about-content-grid.reverse {
        direction: ltr;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-logo {
        font-size: 80px;
    }

    .hero-logo-img {
        height: 100px;
    }

    .service-images {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-logo {
        font-size: 60px;
    }

    .hero-logo-img {
        height: 70px;
    }

    .section-content h2,
    .services-grid-section h2,
    .page-hero h1 {
        font-size: 28px;
    }

    .logo-text {
        font-size: 32px;
    }

    .logo-img {
        height: 38px;
    }

    .logo-subtext {
        font-size: 8px;
    }
}

/* Map Embed */
.map-embed {
    width: 100%;
    overflow: hidden;
}

.map-embed iframe {
    display: block;
}

/* Service Areas Section */
.service-areas-section {
    padding: 100px 0;
    background: white;
}

.service-areas-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-areas-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.area-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--background-light);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

a.area-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.area-link-plain {
    cursor: default;
    color: #555;
    font-weight: 600;
}

.area-arrow {
    font-size: 16px;
    transition: transform 0.3s;
}

a.area-link:hover .area-arrow {
    transform: translateX(4px);
}

.service-areas-note {
    text-align: center;
    font-size: 15px;
    color: #777;
}

/* Trust Badges Bar */
.trust-bar {
    background: var(--primary-color);
    padding: 22px 0;
    position: relative;
    z-index: 2;
    border-bottom: 3px solid var(--secondary-color);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-icon {
    font-size: 18px;
    color: var(--secondary-color);
}

/* Homepage Reviews Section */
.homepage-reviews {
    background: var(--background-light);
    padding: 100px 0;
}

.homepage-reviews h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.homepage-review-card {
    background: white;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0 0, 98% 0, 100% 4%, 100% 100%, 2% 100%, 0 96%);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.review-stars {
    color: #FBBC05;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.review-quote {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
}

/* Our Work Gallery */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 4/3;
    clip-path: polygon(0 0, 98% 0, 100% 3%, 100% 100%, 2% 100%, 0 97%);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9) 0%, transparent 100%);
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* Mobile Sticky Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 998;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(212, 169, 96, 0.5);
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.mobile-call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(212, 169, 96, 0.7);
}

@media (max-width: 968px) {
    .mobile-call-btn {
        display: flex;
    }

    .homepage-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .trust-items {
        gap: 20px;
    }

    .trust-item {
        font-size: 12px;
    }

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

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

    .trust-items {
        gap: 15px;
        justify-content: center;
    }

    .trust-item {
        font-size: 11px;
        gap: 6px;
    }

    .trust-icon {
        font-size: 16px;
    }

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

    .service-areas-section h2 {
        font-size: 28px;
    }

    .homepage-reviews h2,
    .gallery-section h2 {
        font-size: 28px;
    }

    .mobile-call-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Google Reviews Floating Badge */
.google-reviews-badge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    animation: badgeSlideIn 0.6s ease-out 1s both, badgePulse 3s ease-in-out 2s 3;
    cursor: pointer;
}

.google-reviews-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

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

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reviews-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews-badge-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.reviews-badge-stars {
    color: #FBBC05;
    font-size: 20px;
    letter-spacing: 2px;
}

.reviews-badge-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.reviews-badge-text strong {
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 640px) {
    .google-reviews-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        gap: 8px;
    }

    .reviews-badge-stars {
        font-size: 12px;
    }

    .reviews-badge-text {
        font-size: 11px;
    }

    .reviews-badge-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== FAQ Styles ===== */
.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ===== Service list in cards ===== */
.service-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.service-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 14px;
    color: white;
    line-height: 1.4;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 600px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}

/* ===== Locations Dropdown Nav ===== */
.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li.has-dropdown > a::after {
    content: '▾';
    font-size: 10px;
    transition: transform 0.3s;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: 1px;
}

.nav-menu li.has-dropdown:hover > a::after,
.nav-menu li.has-dropdown.open > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    z-index: 999;
    padding: 14px 0 8px 0;
    border-top: 3px solid var(--secondary-color);
}

/* Invisible bridge so mouse can travel from nav link to dropdown without losing hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-menu li.has-dropdown:hover .dropdown-menu,
.nav-menu li.has-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    color: white !important;
    text-decoration: none;
    clip-path: none !important;
    border-radius: 0 !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s !important;
    transform: none !important;
    box-shadow: none !important;
}

.dropdown-menu a:hover {
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
}

.dropdown-menu a::before {
    display: none !important;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 6px 0;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .nav-menu li.has-dropdown > a::after {
        content: '▾';
        margin-left: auto;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 3px solid var(--secondary-color);
        background: rgba(0,0,0,0.25);
        min-width: 100%;
        padding: 4px 0;
        display: none;
    }

    .nav-menu li.has-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 20px 10px 30px !important;
        font-size: 13px !important;
    }
}

/* ===== Contact Map ===== */
.contact-map {
    margin-top: 32px;
}

.contact-map a {
    display: block;
    text-decoration: none;
    position: relative;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}

.contact-map a:hover iframe {
    border-color: var(--secondary-color);
}

.map-overlay-label {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.map-overlay-label span {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .contact-map {
        margin-top: 24px;
    }

    .contact-map iframe {
        height: 180px;
    }
}

/* ===== Service Card Photos ===== */
.service-card-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-photo:hover {
    transform: scale(1.03);
}

/* Single photo takes full width */
.service-card-photos:has(.service-card-photo--single) {
    grid-template-columns: 1fr;
}

.service-card-photo--single {
    height: 220px;
}

/* 3-photo layout: first spans 2 cols */
.service-card-photos:not(:has(.service-card-photo--single)) .service-card-photo:first-child:nth-last-child(3),
.service-card-photos:not(:has(.service-card-photo--single)) .service-card-photo:first-child:nth-last-child(3) ~ .service-card-photo:nth-child(2) {
    grid-column: span 1;
}

@media (max-width: 600px) {
    .service-card-photos {
        grid-template-columns: 1fr 1fr;
    }
    .service-card-photo {
        height: 120px;
    }
    .service-card-photo--single {
        height: 180px;
    }
}

/* ===== Location Page Photo Grid ===== */
.location-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 8px 0;
    border-radius: 8px;
    overflow: hidden;
}

.location-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.location-photo:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .location-photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .location-photo {
        height: 140px;
    }
}

/* ===== Service Card Photos ===== */
.service-card-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.service-card-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card-photo:hover {
    transform: scale(1.03);
}

/* Single photo takes full width */
.service-card-photos:has(.service-card-photo--single) {
    grid-template-columns: 1fr;
}

.service-card-photo--single {
    height: 220px;
}

/* 3-photo layout: first spans 2 cols */
.service-card-photos:not(:has(.service-card-photo--single)) .service-card-photo:first-child:nth-last-child(3),
.service-card-photos:not(:has(.service-card-photo--single)) .service-card-photo:first-child:nth-last-child(3) ~ .service-card-photo:nth-child(2) {
    grid-column: span 1;
}

@media (max-width: 600px) {
    .service-card-photos {
        grid-template-columns: 1fr 1fr;
    }
    .service-card-photo {
        height: 120px;
    }
    .service-card-photo--single {
        height: 180px;
    }
}

/* ===== Location Page Photo Grid ===== */
.location-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 8px 0;
    border-radius: 8px;
    overflow: hidden;
}

.location-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.location-photo:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .location-photo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .location-photo {
        height: 140px;
    }
}

/* ===== Services Accordion ===== */
.services-accordion-section {
    padding: 60px 0;
    background: var(--background-light);
}

.accordion-intro {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-item:has(.accordion-trigger[aria-expanded="true"]) {
    border-color: var(--secondary-color);
}

.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    text-align: left;
}

.accordion-trigger:hover {
    background: rgba(255,255,255,0.03);
}

.accordion-trigger-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.accordion-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.accordion-titles {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.accordion-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.accordion-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

.accordion-chevron {
    font-size: 18px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 24px 24px 80px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.75;
}

.accordion-body p {
    margin-bottom: 12px;
}

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

.accordion-body .service-list {
    margin-top: 16px;
}

/* Accordion photos */
.accordion-photo {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.accordion-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-photo-grid-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Smooth open/close animation */
.accordion-body:not([hidden]) {
    animation: accordionOpen 0.25s ease;
}

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

@media (max-width: 768px) {
    .accordion-body {
        padding: 0 16px 20px 16px;
    }
    .accordion-trigger {
        padding: 16px;
    }
    .accordion-icon {
        font-size: 22px;
        width: 32px;
    }
    .accordion-title {
        font-size: 15px;
    }
    .accordion-photo-grid-img {
        height: 110px;
    }
}

/* ===== Full-width service expansion panel ===== */
.svc-expand-panel {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 28px 32px;
    animation: cardExpand 0.25s ease;
    color: white;
    font-size: 15px;
    line-height: 1.8;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.svc-expand-panel.no-photo,
.svc-expand-panel:not(:has(.svc-card-body-photo img)) {
    grid-template-columns: 1fr;
}

.svc-expand-panel p {
    color: white;
    margin: 0 0 12px;
}

.svc-expand-panel p a {
    color: var(--secondary-color);
}

.svc-expand-panel .service-list {
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
    color: white;
}

.svc-expand-panel .service-list li {
    color: white;
}

.svc-expand-panel .card-expand-photo {
    height: 200px;
    margin: 0;
}

.svc-expand-panel .card-expand-photo-grid {
    margin: 0;
}

.svc-expand-panel .card-expand-photo-img {
    height: 120px;
}

.svc-expand-panel .svc-card-close {
    margin-top: 20px;
    color: rgba(255,255,255,0.4);
}

.svc-expand-panel .svc-card-close:hover {
    color: white;
}

@media (max-width: 768px) {
    .svc-expand-panel {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .svc-expand-panel .service-list {
        grid-template-columns: 1fr;
    }
}
