* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #ca9e7a;
    overflow-x: hidden;
    background: #110705;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.5s forwards;
    background: rgba(17, 7, 5, 0.9);
    backdrop-filter: blur(10px);
    height: 120px;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.nav-links {
    display: flex;
    gap: 80px;
    list-style: none;
}

.nav-links a {
    color: #ca9e7a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    transition: all 0.5s ease;
    font-weight: 300;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ca9e7a;
    transition: width 0.5s ease;
}

.nav-links a:hover {
    color: #87644b;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #110705;
    z-index: -2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #110705;
    z-index: -1;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: url('founderfinal.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFade 1.8s ease 1s forwards;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-top: 50px;
    margin-left: 100fpx;
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 17px;
    text-transform: uppercase;
    margin-bottom: -200px;
    line-height: 1.1;
    color: #835533;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    color: #87644b;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1.5s ease 2s forwards;
}

.chevron {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ca9e7a;
    border-bottom: 2px solid #ca9e7a;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(10px); }
}

/* Content Sections */
.section {
    min-height: 100vh;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #110705;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    max-width: 1200px;
    width: 100%;
}

.section-label {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 60px;
    font-family: 'Arial', sans-serif;
    font-weight: 300;
    color: #837469;
}

.section-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #ca9e7a;
}

.section-text {
    font-size: 22px;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
    max-width: 900px;
    color: #ca9e7a;
}

.connect-text {
    font-size: 22px;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
    max-width: 1200px;
    color: #ca9e7a;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #110705 0%, #1a0f0d 100%);
}

/* Companies Section */
.companies {
    background: #110705;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.company-card {
    padding: 50px 30px;
    border: 1px solid rgba(202, 158, 122, 0.2);
    background: rgba(135, 100, 75, 0.05);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.company-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.company-card:hover {
    border-color: #ca9e7a;
    background: rgba(135, 100, 75, 0.1);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(202, 158, 122, 0.15);
}

.company-name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ca9e7a;
}

.company-role {
    font-size: 14px;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    color: #837469;
}

/* Book Appointment Section */
.appointment {
    background: linear-gradient(135deg, #1a0f0d 0%, #110705 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    border: 1px solid rgba(202, 158, 122, 0.2);
    background: rgba(135, 100, 75, 0.05);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    border-color: #ca9e7a;
    background: rgba(135, 100, 75, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(202, 158, 122, 0.2);
}

/* Service Logo Styling */
.service-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 158, 122, 0.08);
    border: 1px solid rgba(202, 158, 122, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.service-card:hover .service-logo {
    background: rgba(202, 158, 122, 0.15);
    border-color: rgba(202, 158, 122, 0.4);
    transform: scale(1.1);
}

.service-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.service-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ca9e7a;
}

.service-description {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
    color: #837469;
}

/* Modal for Service Details */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 7, 5, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1a0f0d;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(202, 158, 122, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.booking-modal {
    max-width: 650px;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #ca9e7a;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    background: none;
    border: none;
}

.close-modal:hover {
    color: #87644b;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ca9e7a;
    letter-spacing: 2px;
}

.modal-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    color: #ca9e7a;
}

.appointment-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.time-option {
    flex: 1;
    padding: 20px 12px;
    border: 1px solid rgba(202, 158, 122, 0.3);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(135, 100, 75, 0.05);
    position: relative;
}

.time-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-option label {
    cursor: pointer;
    display: block;
    width: 100%;
}

.duration-time {
    font-size: 16px;
    font-weight: 400;
    color: #ca9e7a;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.duration-desc {
    font-size: 11px;
    color: #837469;
    letter-spacing: 0.5px;
}

.time-option:hover {
    border-color: #ca9e7a;
    background: rgba(135, 100, 75, 0.15);
    transform: translateY(-3px);
}

.time-option input[type="radio"]:checked + label,
.time-option:has(input[type="radio"]:checked) {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.2);
}

.step-title {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ca9e7a;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

/* Calendar Styles */
.calendar-container {
    margin: 20px 0;
    border: 1px solid rgba(202, 158, 122, 0.2);
    background: rgba(135, 100, 75, 0.05);
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-month {
    font-size: 16px;
    font-weight: 400;
    color: #ca9e7a;
    letter-spacing: 1px;
}

.calendar-nav {
    background: transparent;
    border: 1px solid rgba(202, 158, 122, 0.3);
    color: #ca9e7a;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.calendar-nav:hover {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.1);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-size: 11px;
    color: #837469;
    padding: 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    min-height: 250px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(202, 158, 122, 0.2);
    background: rgba(135, 100, 75, 0.05);
    color: #ca9e7a;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 40px;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.15);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: rgba(202, 158, 122, 0.3);
    border-color: #ca9e7a;
    font-weight: 600;
}

.calendar-day.today {
    border: 2px solid #ca9e7a;
}

.calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.other-month {
    opacity: 0.3;
    color: #837469;
}

/* Time Slots */
.time-slots-container {
    margin-top: 30px;
}

.time-slots-title {
    font-size: 14px;
    font-weight: 300;
    color: #ca9e7a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 12px;
    border: 1px solid rgba(202, 158, 122, 0.3);
    background: rgba(135, 100, 75, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ca9e7a;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.time-slot:hover:not(.booked) {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.15);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: rgba(202, 158, 122, 0.3);
    border-color: #ca9e7a;
    font-weight: 600;
}

.time-slot.booked {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Summary Section */
.selected-summary {
    background: rgba(135, 100, 75, 0.1);
    border: 1px solid rgba(202, 158, 122, 0.2);
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(202, 158, 122, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 12px;
    color: #837469;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.summary-value {
    font-size: 13px;
    color: #ca9e7a;
    font-weight: 400;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.secondary-btn {
    flex: 1;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid rgba(202, 158, 122, 0.5);
    color: #ca9e7a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
}

.secondary-btn:hover {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-form .form-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #837469;
    font-family: 'Arial', sans-serif;
}

.booking-form .form-input,
.booking-form .form-textarea {
    padding: 12px;
    background: rgba(135, 100, 75, 0.05);
    border: 1px solid rgba(202, 158, 122, 0.2);
    color: #ca9e7a;
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.booking-form .form-input:focus,
.booking-form .form-textarea:focus {
    outline: none;
    border-color: #ca9e7a;
    background: rgba(135, 100, 75, 0.1);
}

.booking-form .form-textarea {
    resize: vertical;
}

.booking-form .submit-btn {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid #ca9e7a;
    color: #ca9e7a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.booking-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ca9e7a;
    transition: left 0.5s ease;
    z-index: -1;
}

.booking-form .submit-btn:hover:not(:disabled) {
    color: #110705;
}

.booking-form .submit-btn:hover:not(:disabled)::before {
    left: 0;
}

/* --- New CSS for Booking Form Alignment --- */

.booking-form .form-group {
    /* Change from column to row */
    flex-direction: row; 
    align-items: center; /* Vertically center label and input */
    gap: 15px;
}

.booking-form .form-label {
    /* Give labels a fixed width so inputs align */
    flex-basis: 180px; 
    flex-shrink: 0;
    margin-bottom: 0; /* Remove old margin */
    text-align: right;
    font-size: 12px;
}

.booking-form .form-input,
.booking-form .form-textarea {
    /* Let the inputs fill the remaining space */
    flex-grow: 1; 
}

/* This handles the taller textarea */
.booking-form .form-group:has(textarea) {
    align-items: flex-start;
}
.booking-form .form-group:has(textarea) .form-label {
    /* Add padding to align with the top of the textarea */
    padding-top: 12px; 
}

/* --- End of New CSS --- */

.form-response {
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
    display: none;
    margin-top: 10px;
}

.form-response.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.form-response.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 7, 5, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-form-container {
    background: #1a0f0d;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(202, 158, 122, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    margin: auto;
}

.contact-modal.active .contact-form-container {
    transform: scale(1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #837469;
    font-family: 'Arial', sans-serif;
}

.form-input,
.form-textarea {
    padding: 12px;
    background: rgba(135, 100, 75, 0.05);
    border: 1px solid rgba(202, 158, 122, 0.2);
    color: #ca9e7a;
    font-family: 'Georgia', serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ca9e7a;
    background: rgba(135, 100, 75, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid #ca9e7a;
    color: #ca9e7a;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ca9e7a;
    transition: left 0.5s ease;
    z-index: -1;
}

.submit-btn:hover {
    color: #110705;
}

.submit-btn:hover::before {
    left: 0;
}

/* Contact Section */
.contact {
    background: #110705;
    text-align: center;
}

.connect-btn {
    display: inline-block;
    padding: 20px 60px;
    background: transparent;
    border: 1px solid #ca9e7a;
    color: #ca9e7a;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.6s ease;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ca9e7a;
    transition: left 0.6s ease;
    z-index: -1;
}

.connect-btn:hover {
    color: #110705;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(202, 158, 122, 0.3);
}

.connect-btn:hover::before {
    left: 0;
}

/* Photo Gallery Section */
.gallery {
    background: #1a0f0d;
    min-height: 80vh;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    max-width: 1200px;
    width: 100%;
}

.gallery-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #ca9e7a;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    background: rgba(135, 100, 75, 0.05);
    border: 1px solid rgba(202, 158, 122, 0.2);
    height: 400px;
    width: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.7s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 7, 5, 0.8), rgba(135, 100, 75, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ca9e7a;
    font-size: 24px;
    letter-spacing: 2px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/*.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(202, 158, 122, 0.3);
    color: #ca9e7a;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.carousel-control:hover {
    background: rgba(202, 158, 122, 0.5);
    color: #110705;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}*/

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(202, 158, 122, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(202, 158, 122, 0.6);
}

.dot.active {
    background: #ca9e7a;
    transform: scale(1.3);
}

/* Footer Section */
.footer {
    background: #0a0402;
    border-top: 1px solid rgba(202, 158, 122, 0.2);
    padding: 40px 80px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    letter-spacing: 1px;
    color: #ca9e7a;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-link {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ca9e7a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-link:hover {
    color: #87644b;
    text-decoration: underline;
}

.divider {
    color: rgba(202, 158, 122, 0.5);
    font-size: 12px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(202, 158, 122, 0.3);
    border-radius: 50%;
    color: #ca9e7a;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.social-icon:hover {
    border-color: #ca9e7a;
    background: rgba(202, 158, 122, 0.1);
    transform: translateY(-5px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    color: #fff;
    border-color: transparent;
}

.social-icon.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: transparent;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: transparent;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: transparent;
}

/* Policy Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 7, 5, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
    padding: 40px 20px;
}

.policy-modal.active {
    display: flex;
    opacity: 1;
    overflow-y: auto;
}

.policy-content {
    background: #1a0f0d;
    padding: 50px;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(202, 158, 122, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    margin: auto;
    border-radius: 8px;
    max-height: 85vh;
    overflow-y: auto;
}

.policy-modal.active .policy-content {
    transform: scale(1);
}

.policy-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ca9e7a;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(202, 158, 122, 0.2);
    padding-bottom: 20px;
}

.policy-body {
    color: #ca9e7a;
    font-size: 14px;
    line-height: 1.8;
}

.policy-body h3 {
    font-size: 18px;
    font-weight: 400;
    color: #ca9e7a;
    margin-top: 25px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.policy-body h4 {
    font-size: 15px;
    font-weight: 400;
    color: #87644b;
    margin-top: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.policy-body p {
    margin-bottom: 15px;
    opacity: 0.85;
    text-align: justify;
}

.policy-body ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-body ul li {
    margin-bottom: 10px;
    opacity: 0.85;
}

.policy-body ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.policy-body ul ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

/* Scrollbar styling for policy modal */
.policy-content::-webkit-scrollbar {
    width: 8px;
}

.policy-content::-webkit-scrollbar-track {
    background: rgba(202, 158, 122, 0.05);
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb {
    background: rgba(202, 158, 122, 0.3);
    border-radius: 10px;
}

.policy-content::-webkit-scrollbar-thumb:hover {
    background: rgba(202, 158, 122, 0.5);
}
/* --- START: Mobile Responsive Code --- */


/* 1. Style the new Nav Logo */
.nav-logo {
    display: none; /* HIDE ON DESKTOP */
    color: #ca9e7a;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

/* 2. Style the new Nav Toggle (Hamburger Button) */
.nav-toggle {
    display: none; /* Hide it on desktop by default */
    background: transparent;
    border: 1px solid rgba(202, 158, 122, 0.3);
    color: #ca9e7a;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001; /* Make sure it's above the nav links */
}


/* 3. Main Media Query for Tablets and Phones (992px and smaller) */
@media (max-width: 992px) {

    /* --- NAVIGATION --- */
    .nav {
        /* Change padding for smaller screens */
        padding: 20px 40px;
        height: 80px; /* Make nav bar shorter */
        /* Position the logo and toggle */
        justify-content: flex-end; 
    }

    .nav-logo {
    display: none; /* SHOW ON MOBILE */
}

    .nav-toggle {
        display: block; /* Show the hamburger button */
    }

    .nav-links {
        /* This creates the full-screen mobile menu */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Full viewport height */
        background: #110705;
        
        /* Stack the links vertically */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;

        /* Hide it by default */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active {
        /* This class will be added by JavaScript to show the menu */
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 20px; /* Make links bigger for tapping */
    }

    .hero {
        margin-top: 80px; /* Match new nav height */
        height: 50vh;
    }

    /* --- HERO TEXT --- */
    .hero-title {
        font-size: 60px; /* Drastically reduce font size */
        letter-spacing: 8px;
        margin-bottom: -100px;
        margin-left: 0; /* Remove the left margin */
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    /* --- GENERAL SECTIONS --- */
    .section {
        /* Reduce padding on all sections */
        padding: 80px 40px;
        min-height: auto; /* Allow sections to be shorter */
    }

    .section-title {
        font-size: 42px; /* Reduce all section titles */
    }

    .section-text {
        font-size: 18px; /* Make text slightly smaller */
    }

    /* --- GRIDS --- */
    .companies-grid {
        /* Stack the cards */
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    /* --- BOOKING MODAL --- */
    .modal-content {
        /* Allow modal to be almost full width */
        width: 90%;
        padding: 30px 20px;
    }
    
    .appointment-options {
        /* Stack the duration options */
        flex-direction: column;
        gap: 10px;
    }

    /* Undo the desktop form alignment */
    .booking-form .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .booking-form .form-label {
        flex-basis: auto;
        text-align: left;
        font-size: 11px;
    }

    .booking-form .form-group:has(textarea) .form-label {
        padding-top: 0;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 40px;
    }
    .footer-content {
        /* Stack the left and right footer sections */
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-left {
        align-items: center; /* Center the text */
    }
}


/* 4. Extra Media Query for Small Phones (576px and smaller) */
@media (max-width: 576px) {
    .nav {
        padding: 20px; /* Even less padding */
    }

    .section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 16px;
    }

    /* Stack calendar and time slots */
    .time-slots {
        grid-template-columns: 1fr 1fr; /* Two columns for time */
    }
}

/* --- END: Mobile Responsive Code --- */
