:root {
    --primary: #6C63FF;
    --primary-dark: #564FD8;
    --secondary: #FF6584;
    --accent: #42C6FF;
    --dark: #2D3748;
    --light: #F7FAFC;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --wave-color: rgba(108, 99, 255, 0.1);
    --success: #4BB543;
    --gray: #718096;
    --light-gray: #E2E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.wave-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: -1;
    animation: waveAnimation 15s ease-in-out infinite alternate;
}

@keyframes waveAnimation {
    0% {
        transform: scale(1) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: scale(1.2) rotate(2deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    100% {
        transform: scale(1.1) rotate(-2deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

/* Hero Section Styles */
.hero {
    display: flex;
    min-height: 100vh;
    padding: 4rem 8%;
    align-items: center;
    gap: 4rem;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-video {
    flex: 1;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Mobile Video Container - Hidden on Desktop */
.mobile-video-container {
    display: none;
    margin: 2rem 0;
    width: 100%;
}

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

.title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 400;
}

.features {
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.feature-icon {
    background: var(--gradient);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
}

.feature-text p {
    color: #718096;
    font-size: 0.95rem;
}

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

.portfolio-button, .book-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 1rem;
    gap: 0.5rem;
}

.portfolio-button {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.portfolio-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
}

.book-button {
    background: var(--gradient);
    color: white;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

.social-proof {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

.clients-count, .rating {
    display: flex;
    flex-direction: column;
}

.clients-count .count {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rating .stars {
    color: #F6AD55;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.clients-count span, .rating span {
    font-size: 0.9rem;
    color: #718096;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    background: var(--dark);
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gif-redirect {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 2;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid var(--primary);
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-options {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.options-button {
    background: rgba(255, 255, 255, 0.95);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.options-button:hover {
    background: white;
    transform: rotate(90deg);
}

.options-button i {
    color: var(--dark);
    font-size: 1.2rem;
}

.options-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 220px;
    z-index: 4;
    overflow: hidden;
}

.options-dropdown.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

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

.dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: #F7FAFC;
}

.dropdown-item i {
    margin-right: 12px;
    color: var(--primary);
    width: 18px;
    text-align: center;
}

/* When video is playing */
.video-playing .gif-redirect,
.video-playing .play-button {
    display: none;
}

.video-playing .youtube-iframe {
    display: block;
}

.video-playing .video-options {
    opacity: 0;
    pointer-events: none;
}

/* Tooltip styles */
#tooltip-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.copy-tooltip {
    background: #4CAF50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    pointer-events: none;
}

.copy-tooltip.show {
    transform: translateY(0);
    opacity: 1;
}

.copy-tooltip.error {
    background: #F44336;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4CAF50;
}

.copy-tooltip.error::after {
    border-top-color: #F44336;
}

/* Appointment Page Styles */
.appointment-page {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.info-section {
    flex: 0.8;
    padding: 2rem;
    display: flex;
    align-items: center;
    color: var(--dark);
}

.info-content {
    max-width: 400px;
    margin: 0 auto;
}

.info-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.info-section h1 i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-section h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.feature-icon {
    background: var(--gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-weight: 600;
}

.feature-text p {
    color: var(--gray);
    font-size: 0.9rem;
}

.social-proof {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    align-items: center;
}

.clients-count, .rating {
    display: flex;
    flex-direction: column;
}

.clients-count .count {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rating .stars {
    color: #F6AD55;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.clients-count span, .rating span {
    font-size: 0.85rem;
    color: var(--gray);
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.contact-info i {
    color: var(--primary);
}

/* Appointment Form Styles */
.appointment-section {
    flex: 1.2;
    display: flex;
    align-items: center;
}

.appointment-card {
    width: 100%;
    max-width: 700px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin: 0 auto;
}

.form-container {
    width: 100%;
}

.form-title {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary);
    color: white;
}

.step.completed .step-number {
    background-color: var(--success);
    color: white;
}

.step-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.booking-section {
    display: none;
}

.booking-section.active {
    display: block;
}

.calendar {
    width: 100%;
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.calendar-nav button:hover {
    background: var(--primary-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--primary);
    padding: 0.3rem;
    text-transform: uppercase;
}

.calendar-day {
    text-align: center;
    padding: 0.6rem 0.3rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    position: relative;
}

.calendar-day:hover:not(.disabled) {
    background: var(--light-gray);
}

.calendar-day.selected {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.calendar-day.today.selected::after {
    background: white;
}

.selected-date, .appointment-time {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.time-slot {
    padding: 0.6rem;
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.time-slot.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.time-slot.disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 198, 255, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn:disabled {
    background: #cdd3d8;
    cursor: not-allowed;
}

.btn-back {
    background: white;
    color: var(--primary);
    border: 1px solid var(--light-gray);
}

.btn-back:hover {
    background: var(--light-gray);
}

.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

.confirmation-message {
    text-align: center;
    padding: 1rem 0;
}

.confirmation-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.confirmation-message h2 {
    color: var(--success);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.confirmation-message p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.confirmation-details {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: left;
}

.confirmation-details p {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero {
        padding: 4rem 5%;
    }
    
    .title {
        font-size: 2.8rem;
    }

    .appointment-page {
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 3rem 5%;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 0;
        width: 100%;
    }
    
    .hero-video {
        display: none;
    }
    
    .mobile-video-container {
        display: block;
        width: 100%;
        max-width: 600px;
        margin: 2rem auto;
    }
    
    .title {
        font-size: 2.4rem;
    }
    
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .features {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-proof {
        justify-content: center;
    }

    .appointment-page {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .info-section, .appointment-section {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .portfolio-button, .book-button {
        width: 100%;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        flex-direction: column-reverse;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .mobile-video-container {
        margin: 1.5rem 0;
    }

    .appointment-page {
        padding: 1rem;
    }
    
    .appointment-card {
        padding: 1.5rem;
    }
    
    .time-slots {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 0.5rem;
    }
}
/* here is start css for header and footer */

/* header-footer-styles.css */

/* --- Foundational & Global Styles (Required for Header/Footer) --- */

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    /* ADDED: Adds space at the top so content isn't hidden by the fixed header */
    padding-top: 80px; 
}

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

h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

/* --- Header Styles --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.navbar ul li a:hover::after {
    width: 100%;
}

.navbar ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-color);
}


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

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

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

.footer-col p {
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 0 20px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

/* MODIFIED: Styles to center the copyright text and links */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column; /* Stack copyright and links vertically */
    align-items: center;   /* Center them horizontally */
    text-align: center;    /* Ensure text within elements is centered */
    gap: 10px;             /* Add a small space between the copyright and links */
}

.footer-bottom p {
    color: #aaa;
    margin-bottom: 0; /* Remove default margin as gap is used now */
}

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

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}


/* --- Responsive Styles for Header & Footer --- */

@media (max-width: 767px) {
    /* Header adjustments */
    .header .container {
        padding: 15px;
    }
    
    .navbar {
        position: fixed;
        top: 73px; /* Adjusted to match a slightly smaller mobile header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--white);
        transition: var(--transition);
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .navbar ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Footer adjustments */
    .footer-col {
        margin-bottom: 30px;
    }
    
    /* The main .footer-bottom style already handles mobile centering, so no extra rules are needed here */
}