* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FCBE01;
    --primary-dark: #BA8C0A;
    --secondary-color: #74570B;
    --accent-color: #FCBE01;
    --text-dark: #000000;
    --text-light: #636e72;
    --text-on-dark: #FFFFFF;
    --text-accent: #EFD659;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --border-color: #74570B;
    --gradient-1: linear-gradient(135deg, #FCBE01, #BA8C0A);
    --gradient-2: linear-gradient(135deg, #FCBE01, #BA8C0A);
    --gradient-3: linear-gradient(135deg, #FCBE01 0%, #EFD659 100%);
    --gradient-gold: linear-gradient(135deg, #FCBE01, #BA8C0A);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 16px rgba(252, 190, 1, 0.3);
    --shadow-gold-lg: 0 8px 32px rgba(252, 190, 1, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.logo i {
    font-size: 32px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo .logo-image {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    background: #fcbf01;
    color: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(252, 191, 1, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
    z-index: 0;
    pointer-events: none;
}

.about-hero .hero-bg {
    background: url("images/services/about%20us%20hero.png") top center/100% auto no-repeat;
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.services-hero .hero-bg {
    background: url("images/services/Services%20hero%20section.png") top center/100% auto no-repeat;
    opacity: 0.7;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.services-hero .hero-text {
    color: white;
}

.services-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 14px auto 0;
}

.services-hero {
    min-height: 360px;
    height: clamp(360px, 57vw, 620px);
    padding: 0;
}

.services-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    width: min(900px, 92%);
    margin: 0 auto;
    padding: clamp(40px, 8vw, 96px) 0;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-text {
    color: white;
    text-shadow: 0 8px 24px rgba(12, 12, 12, 0.45);
}

.about-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    max-width: 720px;
    margin: 20px auto;
}

.about-hero {
    min-height: 320px;
    height: clamp(360px, 70vw, 560px);
    padding: 0;

}

.about-hero .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    width: min(900px, 92%);
    margin: 0 auto;
    padding: clamp(40px, 8vw, 96px) 0;
}

.about-hero .hero-title {
    font-size: clamp(32px, 5vw, 56px);
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: scale(1);
}

.hero-img-placeholder i {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.3);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.card-1 {
    top: 50px;
    left: -50px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: -50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Booking Form */
.booking-form-container {
    margin-top: 60px;
    animation: slideUp 1s ease-out 1.5s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-form {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.booking-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.booking-form-header i {
    font-size: 28px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.booking-form-fields {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.booking-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.booking-field i {
    position: absolute;
    left: 16px;
    bottom: 18px;
    font-size: 16px;
    color: var(--primary-color);
    z-index: 1;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.booking-field input::placeholder {
    color: var(--text-light);
}

.booking-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-submit-btn {
    padding: 16px 32px;
    background: var(--gradient-2);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.3);
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(108, 92, 231, 0.4);
}

.booking-submit-btn i {
    font-size: 16px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--bg-light);
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.services-tab {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-tab .tab-icon {
    font-size: 16px;
    color: var(--text-dark);
}

.services-tab span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.services-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.services-tab.active .tab-icon {
    color: white;
}

.services-tab.active span {
    color: white;
}

.services-panel {
    display: none;
    margin-top: 16px;
}

.services-panel.active {
    display: block;
    animation: servicesFade 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.services-panel[hidden] {
    display: none;
}

@keyframes servicesFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 20px 0;
}

.service-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.28);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 100% 0%, rgba(252, 190, 1, 0.18) 0%, rgba(252, 190, 1, 0) 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
    opacity: 0.7;
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(252, 190, 1, 0.16);
    border-color: rgba(252, 190, 1, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.service-media {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.service-card:hover .service-media {
    transform: scale(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(252, 190, 1, 0.12);
    border: 1px solid rgba(252, 190, 1, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-icon i {
    font-size: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(252, 190, 1, 0.2);
    border-color: rgba(252, 190, 1, 0.5);
    transform: translateY(-2px);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    transition: var(--transition);
}

.service-card:hover .service-description {
    color: var(--text-dark);
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(252, 190, 1, 0.3);
}

.service-cta i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-cta {
    background: var(--gradient-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 190, 1, 0.5);
}

.service-card:hover .service-cta i {
    transform: translateX(4px);
}

.service-card:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Grid responsive design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-img-wrapper {
    position: relative;
    height: auto;
    overflow: visible;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-img-wrapper:hover .about-main-image {
    transform: scale(1);
}

.about-img-placeholder i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
}

.experience-badge {
    position: absolute;
    top: auto;
    right: -18px;
    bottom: -18px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: none;
    z-index: 2;
}

.experience-badge h3 {
    font-size: 48px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.experience-badge p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Team Section */
.team {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-img-placeholder {
    width: 100%;
    height: 280px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.5);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    justify-content: center;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 20px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: italic;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
    border-bottom-color: currentColor;
}

.footer .contact-link {
    color: rgba(255, 255, 255, 0.75);
}

.contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.footer-logo .logo-image {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (min-width: 992px) {
    .logo .logo-image {
        height: 72px;
    }

    .footer-logo .logo-image {
        height: 60px;
    }
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 16px;
    line-height: 1;
}

/* Working Hours */
.hours-intro {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hours-list {
    display: grid;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.hours-day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-time {
    text-align: right;
}

.hours-note {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

/* Social Embed */
.social-embed {
    padding: 80px 0;
    background: var(--bg-light);
}

.tiktok-embed-wrapper {
    display: flex;
    justify-content: center;
}

.tiktok-embed-wrapper .tiktok-embed {
    margin: 0 !important;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.video-modal-content {
    position: relative;
    width: min(720px, 92vw);
    max-height: 80vh;
    background: #000;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    border-radius: 12px;
    background: #000;
    object-fit: contain;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-modal-close:hover {
    transform: scale(1.05);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-2);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    color: #fcbf01;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .service-card {
        flex-basis: clamp(240px, 45vw, 300px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .booking-form-fields {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-submit-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .hero-image-wrapper {
        height: 460px;
        width: min(520px, 100%);
        margin: 0 auto;
    }

    .card-1 {
        left: -20px;
    }

    .card-2 {
        right: -20px;
    }

    .card-3 {
        left: -10px;
    }

    .booking-form {
        padding: 32px;
    }

    .booking-form-fields {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .navbar .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .services-hero .hero-bg,
    .about-hero .hero-bg {
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: #000;
    }

    .services-hero,
    .about-hero {
        height: auto;
        min-height: clamp(320px, 65vw, 460px);
        padding: 96px 0 52px;
    }

    .services-hero .hero-content,
    .about-hero .hero-content {
        width: min(100%, 700px);
        padding: 0;
    }

    .services-hero .hero-subtitle,
    .about-hero .hero-subtitle {
        margin-top: 14px;
        margin-bottom: 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 24px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        height: 400px;
    }

    .floating-card {
        display: none;
    }

    .booking-form {
        padding: 24px;
    }

    .booking-form-header h3 {
        font-size: 20px;
    }

    .booking-form-fields {
        grid-template-columns: 1fr;
    }

    .booking-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .experience-badge {
        right: 0;
    }
}

@media (max-width: 640px) {
    section {
        padding: 72px 0;
    }

    .container {
        padding: 0 16px;
    }

    .nav-wrapper {
        padding: 16px 0;
    }

    .nav-menu {
        top: 72px;
        padding: 28px 20px;
    }

    .hero {
        padding: 110px 0 64px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        align-items: center;
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-image-wrapper {
        height: 320px;
    }

    .floating-card {
        display: none;
    }

    .services-hero,
    .about-hero {
        height: auto;
        min-height: 280px;
        padding: 80px 0 40px;
    }

    .services-hero .hero-content,
    .about-hero .hero-content {
        width: 100%;
    }

    .services-hero .hero-title,
    .about-hero .hero-title {
        font-size: clamp(28px, 8.2vw, 34px);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .services-hero .hero-subtitle,
    .about-hero .hero-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .section-header {
        margin: 0 auto 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-card {
        padding: 24px;
    }

    .service-media {
        height: 140px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-img-wrapper {
        height: auto;
    }

    .experience-badge {
        position: absolute;
        top: auto;
        right: -12px;
        bottom: -12px;
        padding: 16px;
        margin: 0;
        transform: none;
    }

    .experience-badge h3 {
        font-size: 36px;
    }

    .team-img-placeholder {
        height: 220px;
    }

    .testimonial-card {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .testimonial-rating i {
        font-size: 18px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer {
        padding: 64px 0 0;
    }

    .footer-content {
        margin-bottom: 40px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Mission & Vision Cards Styles */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-vision-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mission-vision-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-vision-icon i {
    font-size: 24px;
    color: white;
}

.mission-vision-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Mission & Vision Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .mission-vision-card {
        padding: 32px;
    }

    .mission-vision-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .mission-vision-card {
        padding: 24px;
    }

    .mission-vision-card h3 {
        font-size: 18px;
    }

    .mission-vision-card p {
        font-size: 14px;
    }

    .mission-vision-icon {
        width: 50px;
        height: 50px;
    }

    .mission-vision-icon i {
        font-size: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}



/* Simple responsive design for tabs */
@media (max-width: 640px) {
    .services-tabs {
        gap: 8px;
    }

    .services-tab {
        font-size: 12px;
        padding: 10px 16px;
    }
}
/* Services tabs - clean and simple */

/* Home Hero Clean Redesign */
#home.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 128px 0 72px;
    color: #fff;
}

#home.hero .hero-bg {
    background:
        radial-gradient(circle at 20% 18%, rgba(252, 190, 1, 0.24) 0%, rgba(252, 190, 1, 0) 36%),
        linear-gradient(125deg, #090909 0%, #121212 45%, #1f1808 100%);
}

#home.hero .hero-bg::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    top: -140px;
    right: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
}

#home.hero .hero-content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

#home.hero .hero-text {
    max-width: 580px;
}

#home.hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    animation: heroEyebrowPulse 2.8s ease-in-out infinite;
}

#home.hero .hero-eyebrow::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -140%;
    width: 50%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.44) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-22deg);
    animation: heroEyebrowShine 2.8s ease-in-out infinite;
    z-index: 0;
}

#home.hero .hero-eyebrow i,
#home.hero .hero-eyebrow span {
    position: relative;
    z-index: 1;
}

#home.hero .hero-eyebrow i {
    color: #fcd247;
}

#home.hero .hero-title {
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.04;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
    color: #fff;
}

#home.hero .gradient-text {
    background: linear-gradient(100deg, #ffe680 0%, #fcbf01 50%, #f2a50c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: heroTitleGradientFlow 4.2s linear infinite;
}

#home.hero .hero-subtitle {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
    max-width: 52ch;
}

#home.hero .hero-subtitle.is-typing::after {
    content: '|';
    display: inline-block;
    margin-left: 3px;
    color: #fcbf01;
    animation: heroTypeCursorBlink 0.9s steps(1, end) infinite;
}

#home.hero .hero-buttons {
    gap: 14px;
    margin-bottom: 0;
}

#home.hero .hero-buttons .btn-primary {
    color: #1d1400;
    background: linear-gradient(110deg, #ffdc68 0%, #fcbf01 55%, #f0a612 100%);
    box-shadow: 0 14px 32px rgba(252, 190, 1, 0.34);
}

#home.hero .hero-buttons .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.45);
}

#home.hero .hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

#home.hero .hero-image-wrapper {
    position: relative;
    width: min(100%, 560px);
    height: clamp(420px, 50vw, 580px);
    margin: 0 auto;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.24) 0%, rgba(252, 190, 1, 0.2) 100%);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.4);
}

#home.hero .hero-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
}

#home.hero .hero-quality-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 13px;
    font-weight: 600;
    animation: heroBadgeFloat 3s ease-in-out infinite;
    white-space: nowrap;
}

#home.hero .hero-quality-badge i {
    color: #fcd247;
}

#home.hero .hero-quality-badge.corner-top-left {
    top: 16px;
    left: 16px;
    animation-delay: 0s;
}

#home.hero .hero-quality-badge.corner-top-right {
    top: 16px;
    right: -10px;
    animation-delay: 0.4s;
}

#home.hero .hero-quality-badge.corner-bottom-left {
    bottom: 16px;
    left: 16px;
    animation-delay: 0.8s;
}

#home.hero .hero-quality-badge.corner-bottom-right {
    bottom: 16px;
    right: -10px;
    animation-delay: 1.2s;
}

@keyframes heroEyebrowPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(252, 190, 1, 0);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 22px rgba(252, 190, 1, 0.26);
        border-color: rgba(252, 190, 1, 0.42);
    }
}

@keyframes heroEyebrowShine {
    0%, 12% {
        left: -140%;
    }
    55%, 100% {
        left: 150%;
    }
}

@keyframes heroBadgeFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(252, 190, 1, 0);
    }
    50% {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(252, 190, 1, 0.26);
    }
}

@keyframes heroTitleGradientFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes heroTypeCursorBlink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

#home.hero .hero-trust,
#home.hero .hero-stats,
#home.hero .floating-card,
#home.hero .booking-form-container,
#home.hero .scroll-indicator {
    display: none;
}

@media (max-width: 1024px) {
    #home.hero {
        padding: 118px 0 66px;
    }

    #home.hero .hero-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    #home.hero .hero-text {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    #home.hero .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #home.hero {
        min-height: auto;
        padding: 106px 0 56px;
    }

    #home.hero .hero-title {
        font-size: clamp(34px, 10vw, 52px);
        letter-spacing: -0.7px;
    }

    #home.hero .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    #home.hero .hero-buttons {
        flex-direction: column;
    }

    #home.hero .hero-buttons .btn-primary,
    #home.hero .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    #home.hero .hero-image-wrapper {
        width: min(100%, 460px);
        height: 380px;
        border-radius: 22px;
    }

    #home.hero .hero-main-image {
        border-radius: 16px;
    }
}

@media (max-width: 640px) {
    #home.hero .hero-eyebrow {
        font-size: 12px;
        padding: 7px 12px;
    }

    #home.hero .hero-image-wrapper {
        height: 340px;
    }

    #home.hero .hero-quality-badge {
        font-size: 12px;
        padding: 7px 9px;
        gap: 6px;
    }

    #home.hero .hero-quality-badge.corner-top-left {
        top: 10px;
        left: 10px;
    }

    #home.hero .hero-quality-badge.corner-top-right {
        top: 10px;
        right: -6px;
    }

    #home.hero .hero-quality-badge.corner-bottom-left {
        bottom: 10px;
        left: 10px;
    }

    #home.hero .hero-quality-badge.corner-bottom-right {
        bottom: 10px;
        right: -6px;
    }
}

/* Quick Contact Form Styles */
.quick-contact .horizontal-contact-form input:focus,
.quick-contact .horizontal-contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 190, 1, 0.1);
}

.quick-contact .horizontal-contact-form input:hover,
.quick-contact .horizontal-contact-form select:hover {
    border-color: var(--primary-dark);
    background: white;
}

.quick-contact .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 190, 1, 0.3);
}

.contact-quick-item:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.contact-quick-item a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Design for Quick Contact Form */
@media (max-width: 768px) {
    .quick-contact .horizontal-contact-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-contact-wrapper {
        padding: 30px 20px !important;
        margin: 0 20px !important;
    }
    
    .quick-contact-info {
        flex-direction: column;
        gap: 20px !important;
    }
    
    .quick-contact-header h2 {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .quick-contact {
        padding: 40px 0 !important;
    }
    
    .quick-contact-wrapper {
        padding: 25px 15px !important;
        margin: 0 15px !important;
        border-radius: 15px !important;
    }
    
    .quick-contact-header {
        margin-bottom: 30px !important;
    }
    
    .quick-contact-header h2 {
        font-size: 22px !important;
    }
}
/* Modern Appointment Form Styles */
.appointment-card {
    min-width: 1000px;
}

.appointment-form {
    min-width: 100%;
}

.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 190, 1, 0.1);
}

.appointment-form input:hover,
.appointment-form select:hover {
    border-color: var(--primary-dark);
    background: white;
}

.appointment-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 190, 1, 0.3);
}

.appointment-form select:focus {
    color: var(--text-dark);
}

.appointment-form input[type="date"]:focus {
    color: var(--text-dark);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for Modern Appointment Form */
@media (max-width: 1200px) {
    .appointment-card {
        min-width: auto;
    }
    
    .appointment-form {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .appointment-form button {
        grid-column: span 5;
        justify-self: center;
        max-width: 200px;
    }
}

@media (max-width: 1024px) {
    .appointment-form {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .appointment-form button {
        grid-column: span 3;
        justify-self: center;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .appointment-form {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .appointment-form button {
        grid-column: span 2;
        justify-self: center;
        max-width: 200px;
    }
    
    .appointment-card {
        padding: 30px 20px !important;
        margin: 0 20px !important;
    }
    
    .appointment-header h2 {
        font-size: 20px !important;
    }
}

@media (max-width: 480px) {
    .appointment-form {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    .appointment-form button {
        grid-column: span 1;
        justify-self: stretch;
        max-width: none;
    }
    
    .appointment-card {
        padding: 25px 15px !important;
        margin: 0 15px !important;
        border-radius: 15px !important;
    }
    
    .appointment-header {
        margin-bottom: 25px !important;
    }
    
    .appointment-header h2 {
        font-size: 18px !important;
    }
    
    .quick-contact {
        padding: 30px 0 !important;
    }
}

/* Appointment Booking Form Responsive Styles */
.booking-section input:focus,
.booking-section select:focus {
    border-color: var(--primary-color);
    background: white;
}

.booking-section button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 190, 1, 0.4);
}

@media (max-width: 1024px) {
    .booking-section form {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .booking-section button {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .booking-section form {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    
    .booking-section button {
        grid-column: span 1;
    }
    
    .booking-card {
        padding: 25px 20px !important;
    }
}

/* Service Detail Page Responsive Styles */
@media (max-width: 1024px) {
    /* Hero Section */
    .hero .hero-content[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .hero .hero-title[style*="font-size: 48px"] {
        font-size: 36px !important;
    }
    
    /* Service Details Grid */
    section > .container > div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Benefits Grid */
    #benefits-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
    
    /* Process Steps */
    #process-steps[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero[style*="min-height: 70vh"] {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    
    .hero .hero-title[style*="font-size: 48px"],
    .hero .hero-title[style*="font-size: 36px"] {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    .hero .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .hero .hero-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Icon */
    #hero-icon[style*="width: 60px"] {
        width: 48px !important;
        height: 48px !important;
    }
    
    #hero-icon i {
        font-size: 20px !important;
    }
    
    /* Hero Image */
    #hero-image-bg[style*="height: 300px"] {
        height: 200px !important;
    }
    
    #hero-service-image {
        object-fit: cover !important;
    }
    
    .hero-image > div[style*="padding: 40px"] {
        padding: 20px !important;
    }
    
    /* Section Padding */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }
    
    /* Details Title */
    #details-title[style*="font-size: 36px"] {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
    
    /* Quick Facts Card */
    .container > div > div > div[style*="padding: 40px"] {
        padding: 24px !important;
    }
    
    /* Benefits Grid */
    #benefits-grid[style*="grid-template-columns: repeat(3, 1fr)"],
    #benefits-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Process Steps */
    #process-steps[style*="grid-template-columns: repeat(4, 1fr)"],
    #process-steps[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* CTA Section */
    section[style*="background: var(--gradient-2)"] h2[style*="font-size: 32px"] {
        font-size: 24px !important;
    }
    
    section[style*="background: var(--gradient-2)"] p[style*="font-size: 18px"] {
        font-size: 16px !important;
    }
    
    section[style*="background: var(--gradient-2)"] > .container > div > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    section[style*="background: var(--gradient-2)"] button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero .hero-title[style*="font-size"] {
        font-size: 24px !important;
    }
    
    .btn-large {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
    
    #hero-image-bg[style*="height"] {
        height: 160px !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    #details-title[style*="font-size"] {
        font-size: 22px !important;
    }
}

/* Testimonials Slider Navigation Responsive */
@media (max-width: 1200px) {
    .testimonial-prev {
        left: 10px !important;
    }
    
    .testimonial-next {
        right: 10px !important;
    }
}

@media (max-width: 768px) {
    .testimonial-nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }
    
    .testimonial-prev {
        left: 15px !important;
    }
    
    .testimonial-next {
        right: 15px !important;
    }
    
    .testimonial-dots {
        margin-top: 25px !important;
        gap: 10px !important;
    }
    
    .testimonial-dot {
        width: 10px !important;
        height: 10px !important;
    }
}

@media (max-width: 480px) {
    .testimonial-nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    
    .testimonial-prev {
        left: 10px !important;
    }
    
    .testimonial-next {
        right: 10px !important;
    }
    
    .testimonial-dots {
        margin-top: 20px !important;
        gap: 8px !important;
    }
    
    .testimonial-dot {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Additional Testimonial Card Responsive Styles */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 30px 20px !important;
    }
    
    .testimonial-text {
        font-size: 15px !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
    }
    
    .testimonial-rating {
        margin-bottom: 20px !important;
    }
    
    .testimonial-rating i {
        font-size: 16px !important;
    }
    
    .author-avatar {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    .author-info h4 {
        font-size: 16px !important;
    }
    
    .author-info p {
        font-size: 13px !important;
    }
}

/* Testimonials Slider Container Padding for Mobile */
@media (max-width: 768px) {
    #testimonials .container > div {
        padding: 0 10px;
    }
    
    .testimonials-slider-wrapper {
        margin: 0 -10px;
    }
}

@media (max-width: 480px) {
    #testimonials .container > div {
        padding: 0 5px;
    }
    
    .testimonials-slider-wrapper {
        margin: 0 -5px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}
