* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --dark-color: #2c2c2c;
    --light-color: #f5f5f5;
    --accent-color: #c9a961;
    --white: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 150px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--primary-color);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
    margin: 10px;
}

.cta-button-large:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.cta-button-large.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-large.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
    font-weight: 300;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 20px;
    color: var(--primary-color);
}

/* Featured Services */
.featured-services {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Preview */
.about-preview {
    padding: 80px 20px;
}

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

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    color: #666;
}

/* About Page Specific */
.about-main {
    padding: 80px 20px;
}

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

.about-text-section {
    font-size: 16px;
    line-height: 1.8;
}

.about-text-section h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.about-text-section p {
    margin-bottom: 20px;
    color: #666;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f0f0 100%);
    border-radius: 10px;
    padding: 80px;
    min-height: 400px;
}

.why-choose-us {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.feature-large {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.feature-large i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-large h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-large p {
    color: #666;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.team-member {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.team-member p {
    color: #666;
}

/* Statistics */
.statistics {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.stat-card h3 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 300;
}

.stat-card:hover h3 {
    color: var(--white);
}

.stat-card p {
    font-size: 18px;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 20px;
}

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

.service-card-detailed {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.service-card-detailed i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.service-card-detailed p {
    color: #666;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: #666;
    padding-left: 25px;
    position: relative;
}

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

.price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Packages Section */
.packages {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.package-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.package-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.package-card > p:nth-of-type(1) {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: #666;
    padding-left: 25px;
    position: relative;
}

.package-card li:last-child {
    border-bottom: none;
}

.package-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.package-price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Portfolio Page */
.portfolio-filters {
    padding: 40px 20px;
    text-align: center;
}

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

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.portfolio-section {
    padding: 60px 20px 80px;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 60px;
}

.portfolio-placeholder p {
    font-size: 20px;
    margin-top: 20px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 16px;
}

/* About Preview on Home */
.portfolio-preview {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.portfolio-mini-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.portfolio-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-mini-item:hover img {
    transform: scale(1.1);
}

.portfolio-mini-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 20px;
}

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

.appointment-form-wrapper h2,
.appointment-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
    min-height: 20px;
}

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

.form-note.error {
    color: #e74c3c;
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.info-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-card p,
.info-card ul {
    color: #666;
    font-size: 14px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.info-card a:hover {
    text-decoration: underline;
}

.info-card.special {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.info-card.special h4,
.info-card.special p {
    color: var(--white);
}

.info-card.special p strong {
    font-size: 18px;
}

/* Why Book With Us */
.why-book {
    padding: 80px 20px;
    background: var(--light-color);
}

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

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.benefit-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-card p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

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

.contact-form-wrapper h2,
.contact-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
}

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

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

.contact-detail-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-detail-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-detail-card i {
    font-size: 35px;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-detail-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-detail-card p {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.contact-detail-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail-card a:hover {
    text-decoration: underline;
}

.contact-detail-card .small {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

/* Social Media */
.social-media {
    margin-top: 20px;
}

.social-media h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.social-link:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 500px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

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

.faq-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.faq-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    gap: 10px;
    align-items: center;
}

.faq-card i {
    color: var(--primary-color);
    min-width: 25px;
}

.faq-card p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer > .container > p {
    text-align: center;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 20px 0;
    }

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

    .nav-menu li {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .services-preview,
    .services-grid-large,
    .features-grid,
    .features-large,
    .team-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .portfolio-grid-large {
        grid-template-columns: 1fr;
    }

    .portfolio-item,
    .portfolio-mini-item {
        height: 250px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card,
    .feature-item,
    .info-card {
        padding: 20px;
    }

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

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .contact-detail-card {
        flex-direction: column;
    }

    .appointment-form-wrapper h2,
    .contact-form-wrapper h2,
    .contact-details h2 {
        font-size: 24px;
    }
}
