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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 4.2rem;
    font-weight: 200;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 3.2rem;
    font-weight: 300;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-primary::before, .btn-secondary::before, .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-outline:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #666666;
    color: #ffffff;
    border-color: #666666;
    border-width: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #555555;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
    border-width: 2px;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000 !important;
    background-color: #000000 !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: none;
}

.logo-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #c8c0be 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover h2::after {
    width: 100%;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #c8c0be;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: relative;
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, #dee2e6 50%, transparent 100%);
    transform: translateY(-50%);
}

.nav-link {
    text-decoration: none;
    color: #c8c0be;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #c8c0be 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 30%, #f5f3f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-photo {
    width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.hero-photo:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 60px 120px rgba(0,0,0,0.2), 0 25px 50px rgba(0,0,0,0.15);
}

/* Floating decorative elements */
.floating-element {
    display: none;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 192, 190, 0.2) 0%, rgba(168, 157, 151, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.floating-element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(212, 197, 187, 0.3) 0%, rgba(200, 192, 190, 0.15) 100%);
}

.floating-element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(168, 157, 151, 0.25) 0%, rgba(141, 128, 120, 0.1) 100%);
}

.floating-element-3 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(200, 192, 190, 0.3) 0%, rgba(168, 157, 151, 0.15) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.image-placeholder {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-size: 1.1rem;
    border: 2px solid #dee2e6;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8dfd7 0%, #f5f1ed 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23e9ecef" opacity="0.3"/><circle cx="80" cy="30" r="1.5" fill="%23dee2e6" opacity="0.4"/><circle cx="60" cy="70" r="1" fill="%23f8f9fa" opacity="0.5"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: center;
    padding: 3rem;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #fff;
    font-size: 2.2rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.about-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.15);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c8c0be 0%, #a89d97 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,80 Q30,60 40,80 Q50,100 60,80 Q70,60 80,80" stroke="%23ffffff" stroke-width="0.5" fill="none" opacity="0.1"/><path d="M10,70 Q20,50 30,70 Q40,90 50,70 Q60,50 70,70 Q80,90 90,70" stroke="%23ffffff" stroke-width="0.3" fill="none" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #e9ecef;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background-color: #000000;
    color: #ffffff !important;
    border-color: #000000;
}

.cta-section .btn-primary:hover {
    background-color: #1a1a1a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #e8dfd7 0%, #f5f1ed 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,90 Q20,70 30,90 Q40,110 50,90 Q60,70 70,90 Q80,110 90,90" stroke="%23e9ecef" stroke-width="0.5" fill="none" opacity="0.2"/></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-header h1 {
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: #a89d97;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* About Main */
.about-main {
    padding: 80px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.about-features i {
    color: #000;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-photo {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.main-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.15);
}

.secondary-photo {
    width: 200px;
    height: 250px;
    align-self: flex-end;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd7 100%);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f1ed 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #e8dfd7;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8dfd7 0%, #d4c5bb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #8d8078;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(200, 192, 190, 0.2);
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial cite {
    font-size: 1.1rem;
    color: #ccc;
    font-style: normal;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 50%, #f5f3f0 100%);
    position: relative;
}

.services-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.services-intro {
    text-align: left;
}

.services-intro h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-photo {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.services-photo:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 12px 24px rgba(0,0,0,0.15);
}

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

.service-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd7 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #d4c5bb;
}

.service-detail:hover {
    transform: translateY(-5px);
}

.service-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-text h3 {
    color: #000;
    margin-bottom: 1rem;
}

.service-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4c5bb 0%, #e8dfd7 100%);
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f1ed 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e8dfd7;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #c8c0be;
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd7 100%);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8c0be 0%, #a89d97 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(200, 192, 190, 0.4);
}

.pricing-header h3 {
    color: #000;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    margin-top: 2rem;
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    text-align: center;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-section .section-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.consultation-text {
    color: #c8c0be;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.consultation-cta {
    margin-top: 2.5rem;
}

.consultation-cta .btn-primary {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #000;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.consultation-benefits {
    margin-bottom: 3rem;
}

.consultation-benefits h3 {
    color: #000;
    margin-bottom: 1rem;
}

.consultation-benefits ul {
    list-style: none;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;
}

.consultation-benefits i {
    color: #000;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.booking-method {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.booking-method:hover {
    transform: translateY(-5px);
}

.booking-method i {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
}

.booking-method h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.booking-method p {
    color: #666;
    font-size: 0.9rem;
}

/* Booking Form Container */
.booking-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Calendly Widget Styling */
.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
}

/* Forms */
.booking-form, .contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-form h3, .contact-form h3 {
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-form p, .contact-form p {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
}

.form-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

/* Alternative Contact */
.alternative-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
}

.contact-options h2 {
    text-align: center;
    color: #000;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-method {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

.contact-method i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.2rem;
    display: block;
}

.contact-method h3 {
    color: #000;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.contact-method .btn-outline {
    margin-top: auto;
    min-width: 150px;
}

/* Payments Page Styles */
.payment-methods {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.payment-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.payment-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2rem;
    color: #1a1a1a;
    width: 50px;
    text-align: center;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.payment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.payment-card p {
    color: #666;
    margin-bottom: 2rem;
}

.invoice-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.divider span {
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.quick-payment h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.quick-payment p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.payment-links {
    display: grid;
    gap: 1rem;
}

.payment-link {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-link:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quickbooks-integration {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
}

.integration-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.integration-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.integration-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit i {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.benefit p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.quickbooks-logo {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qb-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.quickbooks-logo p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.payment-security {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
}

.payment-security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.security-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.security-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.payment-support {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
}

.support-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.support-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.support-option {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.support-option i {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.support-option h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.support-option p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Services Grid for About Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f7f5 100%);
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 280px;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item .service-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-item .service-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

/* Responsive design for services grid */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Video Section Styling */
.video-section {
    margin: 4rem auto;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-section h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.video-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-video {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 20px;
    border: none;
}

/* Responsive video styling */
@media (max-width: 768px) {
    .video-section {
        margin: 3rem 0;
    }
    
    .video-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .about-video {
        border-radius: 15px;
        height: 250px;
    }
}

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

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.faq-item h3 {
    color: #000;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Payment Options */
.payment-options {
    padding: 80px 0;
}

.payment-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-intro h2 {
    color: #000;
    margin-bottom: 1rem;
}

.payment-intro p {
    color: #666;
    font-size: 1.1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.payment-method {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #666;
    font-size: 1.5rem;
}

.payment-method h3 {
    color: #000;
    margin-bottom: 1rem;
}

.payment-method p {
    color: #666;
    margin-bottom: 1.5rem;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: #666;
    font-size: 0.9rem;
}

/* Invoice Payment */
.invoice-payment {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.invoice-section {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.invoice-section h2 {
    color: #000;
    margin-bottom: 1rem;
}

.invoice-section p {
    color: #666;
    margin-bottom: 2rem;
}

.invoice-details {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.invoice-info h3 {
    color: #000;
    margin-bottom: 1.5rem;
}

.invoice-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.invoice-line:last-child {
    border-bottom: none;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* QuickBooks Section */
.quickbooks-section {
    padding: 80px 0;
}

.quickbooks-content {
    max-width: 800px;
    margin: 0 auto;
}

.quickbooks-info h2 {
    color: #000;
    margin-bottom: 1.5rem;
}

.quickbooks-info p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.quickbooks-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #000;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

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

.quickbooks-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.security-item i {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

.security-item h3 {
    color: #000;
    margin-bottom: 1rem;
}

.security-item p {
    color: #666;
    line-height: 1.6;
}

/* Billing Info */
.billing-info {
    padding: 80px 0;
}

.billing-content h2 {
    color: #000;
    margin-bottom: 3rem;
    text-align: center;
}

.billing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.billing-section {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.billing-section h3 {
    color: #000;
    margin-bottom: 1rem;
}

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

.billing-section li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.billing-section li:last-child {
    border-bottom: none;
}

.billing-section p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f7f5 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info p {
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-icon {
    margin-bottom: 1rem;
    color: #000;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #666;
}

.social-media {
    margin-top: 3rem;
    text-align: center;
}

.social-media h3 {
    color: #000;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #f8f8f8;
    border-radius: 25px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.social-link i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #fff;
}

.footer-section .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.footer-section .social-link {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-section .social-link i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.footer-section .social-link:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.5);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-photo {
        width: 280px;
        height: 350px;
    }

    .about-content,
    .about-layout,
    .booking-content,
    .contact-content,
    .services-intro-layout {
        grid-template-columns: 1fr;
    }

    .service-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-icon-large {
        margin: 0 auto 2rem;
    }

    .services-photo {
        max-width: 100%;
        height: auto;
    }

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

    .hero-buttons,
    .about-cta,
    .quickbooks-cta {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-photo {
        width: 240px;
        height: 300px;
    }

    .main-photo {
        width: 250px;
        height: 333px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .booking-form,
    .contact-form {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error states */
.success {
    color: #28a745;
}

.error {
    color: #dc3545;
}
