/* 
 * Main Stylesheet for Ritika Verma Makeup Artist Website
 * Mobile-first approach with elegant luxury theme
 * Redesigned to match logo colors and enhance mobile experience
 */

/* Import Google Fonts - Playfair Display for headings, Montserrat for body, Greatvibes for accents */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500&family=Great+Vibes&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variables - Updated to match logo */
:root {
    --navy-dark: #0a0c1b;
    --navy: #151b33;
    --navy-light: #232844;
    --copper: #d99e76;
    --copper-light: #ebbc9a;
    --gold: #d4af37;
    --gold-light: #efd88e;
    --blush: #f8dbd3;
    --blush-light: #fef4f1;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --gray: #8a8a8a;
    --dark-gray: #444444;
    --black: #212121;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 500;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-light), var(--copper));
    bottom: -10px;
    left: 25%;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--copper);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.text-center {
    text-align: center;
}

.accent-text {
    font-family: 'Great Vibes', cursive;
    color: var(--copper);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Button Styles - Enhanced with gradients */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--copper), var(--gold));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(45deg, var(--copper), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover:before {
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--copper);
    border: 1px solid var(--copper);
    overflow: hidden;
}

.btn-outline:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-outline:hover:before {
    opacity: 1;
}

/* Header Styles - Enhanced for all devices */
.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.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-dark);
}

/* Mobile Navigation - Improved Animations */
.nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle i {
    display: block !important;
    font-size: 24px;
    color: var(--navy);
    transition: transform 0.3s ease;
}

.nav-toggle.active i.fa-bars {
    transform: rotate(90deg);
    opacity: 0;
    position: absolute;
}

.nav-toggle.active i.fa-times {
    transform: rotate(0);
    opacity: 1;
}

.nav-toggle i.fa-times {
    transform: rotate(-90deg);
    opacity: 0;
    position: absolute;
}

.nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav.active {
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.nav-list {
    list-style: none;
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.nav.active .nav-list {
    opacity: 1;
    transform: translateY(0);
}

.nav-item {
    margin-bottom: 20px;
    text-align: center;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.nav-link:hover, .nav-link.active {
    color: var(--copper);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--gold-light));
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

/* Hero Section - Improved for Mobile */
.hero {
    position: relative;
    padding: 0;
    margin-top: 70px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 400px;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-decorative-element {
    position: absolute;
    width: 80px;
    z-index: 3;
    opacity: 0.8;
}

.hero-decorative-element.top-left {
    top: -20px;
    left: -20px;
}

.hero-decorative-element.bottom-right {
    bottom: -20px;
    right: -20px;
}

.hero-content {
    z-index: 3;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--dark-gray);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255,255,255,0.7) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.7) 100%);
    z-index: 1;
}

/* Services Section */
.services {
    background-color: var(--blush-light);
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--copper), var(--gold-light));
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    color: var(--copper);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--light-gray);
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.portfolio-categories a {
    margin: 5px;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.portfolio-categories a.active {
    background: linear-gradient(45deg, var(--copper), var(--gold-light));
    color: var(--white);
}

/* Instagram Gallery - Improved for Mobile */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.instagram-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 100%; /* Square aspect ratio */
    background-color: var(--blush-light);
}

.instagram-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Instagram Profile Section */
.instagram-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.instagram-profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid;
    border-image: linear-gradient(45deg, var(--copper), var(--gold-light)) 1;
}

.instagram-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-profile-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.instagram-profile-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
}

.about-content {
    text-align: center;
}

/* Before-After Section */
.before-after-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.before-after-images {
    display: flex;
    flex-wrap: wrap;
}

.before-image, .after-image {
    flex: 1 1 100%;
    min-width: 300px;
    position: relative;
}

.before-image:before, .after-image:before {
    position: absolute;
    top: 10px;
    color: var(--white);
    background-color: rgba(0,0,0,0.5);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1;
}

.before-image:before {
    content: 'Before';
    left: 10px;
}

.after-image:before {
    content: 'After';
    left: 10px;
}

.before-after-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-caption {
    background-color: var(--white);
    padding: 20px;
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--blush-light);
}

.contact-container {
    display: flex;
    flex-direction: column;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.form-control:focus {
    outline: none;
    border-color: var(--copper);
    box-shadow: 0 0 10px rgba(217, 158, 118, 0.2);
    background-color: var(--white);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--copper), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-info-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 25px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--navy);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav-item {
    margin: 0 10px 10px;
}

.footer-nav-link {
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--copper-light);
}

.social-icons {
    display: flex;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--gray);
    font-size: 1.4rem;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--copper-light);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.whatsapp-btn i {
    font-size: 30px;
}

/* Lightbox - Improved */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 27, 0.95);
    z-index: 1100;
    padding: 30px;
    overflow: auto;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid var(--white);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--copper);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Testimonials */
.testimonial {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 30px;
}

.testimonial:after {
    content: '\201D';
    font-family: Georgia, serif;
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-size: 5rem;
    color: var(--copper-light);
    opacity: 0.2;
    line-height: 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: var(--copper-light);
    opacity: 0.2;
    line-height: 0;
}

.testimonial-author {
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--blush-light);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 500;
}

.testimonial-author-title {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Loading Animation - Fixed */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    position: relative;
}

.loading-spinner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--copper);
    border-bottom-color: var(--gold);
    animation: spin 1.2s linear infinite;
}

.loading-spinner:after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--gold-light);
    border-right-color: var(--copper-light);
    animation: spin 0.8s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 70px;
    margin-top: 70px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(217, 158, 118, 0.8), rgba(212, 175, 55, 0.4));
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--navy-dark);
}

/* Journey Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--copper-light), var(--gold-light));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(even) {
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-content {
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: calc(50% - 30px);
    display: inline-block;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--copper), var(--gold-light));
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--copper-light);
    top: 29px;
}

.timeline-item:nth-child(even) .timeline-connector {
    left: 50%;
}

.timeline-item:nth-child(odd) .timeline-connector {
    right: 50%;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--copper);
    margin-bottom: 10px;
}

/* Certification Cards */
.certification-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.certification-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.certification-institution {
    color: var(--copper);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Philosophy Cards */
.philosophy-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.philosophy-card:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--copper-light), var(--gold-light));
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.philosophy-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--navy);
}

/* Responsive Media Queries */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Before-After Images */
    .before-image, .after-image {
        flex: 1 1 50%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .header-container {
        padding: 20px;
    }
    
    .logo img {
        height: 55px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Hero side-by-side layout */
    .hero {
        min-height: 600px;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem 0;
        align-items: center;
    }
    
    .hero-image-container {
        width: 50%;
        margin-bottom: 0;
        margin-right: 2rem;
    }
    
    .hero-image {
        height: 500px;
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        object-position: center 20%;
    }
    
    .hero-content {
        width: 45%;
        text-align: left;
        padding: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-container {
        flex-direction: row;
        align-items: center;
    }
    
    .about-img {
        width: 40%;
        margin-right: 30px;
        margin-bottom: 0;
    }
    
    .about-content {
        width: 60%;
        text-align: left;
    }
    
    /* Contact layout for tablets */
    .contact-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    
    /* Instagram Profile for tablets */
    .instagram-profile {
        flex-direction: row;
        text-align: left;
        padding: 25px;
    }
    
    .instagram-profile-img {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    /* Timeline for tablets */
    .timeline-item {
        margin-bottom: 60px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav {
        position: static;
        height: auto;
        width: auto;
        background: none;
        overflow: visible;
        box-shadow: none;
    }
    
    .nav-list {
        display: flex;
        padding: 0;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-item {
        margin: 0 0 0 25px;
        text-align: left;
    }
    
    /* Enhanced hero for desktop */
    .hero {
        min-height: 650px;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-image-container {
        width: 55%;
    }
    
    .hero-image {
        height: 550px;
        object-position: center 25%;
    }
    
    .hero-content {
        width: 40%;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact layout for desktop */
    .contact-container {
        flex-direction: row;
    }
    
    .contact-form {
        width: 60%;
    }
    
    .contact-info-grid {
        width: 35%;
        grid-template-columns: 1fr;
        margin-top: 0;
        margin-left: 5%;
    }
    
    /* Footer for desktop */
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-nav {
        margin-bottom: 0;
    }
    
    .social-icons {
        margin-bottom: 0;
    }
    
    .copyright {
        width: 100%;
        margin-top: 3rem;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    /* Maximum hero impact */
    .hero {
        min-height: 750px;
    }
    
    .hero-container {
        padding: 0;
    }
    
    .hero-image {
        height: 600px;
        object-position: center center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .nav-item {
        margin-left: 30px;
    }
}

/* Fix for extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline for mobile */
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-connector {
        width: 30px;
        left: 40px !important;
        right: auto !important;
    }
}

/* Mobile-specific touchpoints */
@media (max-width: 767.98px) {
    /* Improve tap targets */
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .nav-link {
        padding: 12px 0;
        display: block;
    }
    
    /* Enhance form elements */
    .form-control {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Fix WhatsApp button positioning */
    .whatsapp-btn {
        bottom: 25px;
        right: 25px;
    }
    
    /* Improve modal/lightbox close button */
    .lightbox-close {
        top: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255,255,255,0.1);
        border-radius: 50%;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-up {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special effects and enhancements */
.gold-gradient-text {
    background: linear-gradient(45deg, var(--copper), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.border-gradient {
    position: relative;
    border-radius: 10px;
    padding: 4px;
    background: linear-gradient(45deg, var(--copper), var(--gold));
}

.border-gradient-content {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
}

/* Accessibility improvements */
:focus {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy-dark);
    color: var(--white);
    padding: 8px;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Enhance photo gallery for product images */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%; /* Square aspect ratio */
    background-color: var(--blush-light);
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Mobile menu animation fixes */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav.active .nav-item {
    animation: fadeInRight 0.5s ease forwards;
    opacity: 0;
}

.nav.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav.active .nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav.active .nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav.active .nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav.active .nav-item:nth-child(5) { animation-delay: 0.5s; }

/* Print styles */
@media print {
    .nav-toggle, 
    .whatsapp-btn,
    .footer,
    .btn {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
    
    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .header {
        position: relative;
        box-shadow: none;
        margin-bottom: 20px;
    }
    
    .hero,
    .page-header {
        margin-top: 0;
    }
}
/* 
 * Hero Image Fixes - To ensure the image appears fully without cropping
 * Add these styles to your style.css file
 */

/* Hero Section - Base styling */
.hero {
    position: relative;
    padding: 0;
    margin-top: 70px;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

/* Hero Image Container - Key fixes for proper display */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin-bottom: 2rem;
}

/* Hero Image - Critical fixes to prevent cropping */
.hero-image {
    width: 100%;
    display: block;
    object-fit: contain; /* Changed from cover to contain */
    height: auto; /* Auto height to maintain aspect ratio */
    max-height: 85vh; /* Limit height on very tall screens */
    border-radius: 10px;
    transition: transform 0.5s ease;
}

/* Make sure decorative elements don't get in the way */
.hero-decorative-element {
    position: absolute;
    width: 80px;
    z-index: 3;
    opacity: 0.8;
    pointer-events: none; /* Prevents interference with image */
}

/* Content positioning */
.hero-content {
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

/* Media query for tablets and up */
@media (min-width: 768px) {
    .hero {
        min-height: auto; /* Remove fixed height */
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 3rem 0;
        align-items: center;
    }
    
    .hero-image-container {
        width: 50%;
        margin-bottom: 0;
        margin-right: 2rem;
    }
    
    .hero-image {
        object-fit: contain;
        max-height: 600px;
        width: 100%;
    }
    
    .hero-content {
        width: 45%;
        text-align: left;
        padding: 0;
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
    .hero-image-container {
        width: 55%;
    }
    
    .hero-image {
        max-height: 650px;
    }
    
    .hero-content {
        width: 40%;
    }
}

/* Extra large devices */
@media (min-width: 1200px) {
    .hero-image {
        max-height: 700px;
    }
}
/* 
 * Corrected Logo Enhancement - Make logo more visible without text
 * Add these styles to your style.css file
 */

/* Logo container styling */
.logo {
    display: flex;
    align-items: center;
}

/* Logo image sizing - increased size but no text */
.logo img {
    height: 70px; /* Increased size for better visibility */
    transition: all 0.3s ease;
}

/* Remove any text that might be showing */
.logo-text {
    display: none;
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .logo img {
        height: 75px;
    }
}

@media (min-width: 768px) {
    .logo img {
        height: 80px;
    }
}
/* 
 * Corrected Hero Image Fix - Ensure image is FULLY visible without cropping
 * Add these styles to your style.css file
 */

/* Hero Section - Basic structure */
.hero {
    position: relative;
    padding: 0;
    margin-top: 70px;
    background-color: var(--white);
    overflow: visible;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Image - Critical fix to ensure NO cropping */
.hero-image {
    display: block;
    width: auto; /* This allows the image to use its natural width */
    max-width: 100%; /* But never exceed the container */
    height: auto; /* Height scales proportionally */
    object-fit: contain; /* This ensures NO cropping */
    border-radius: 10px;
}

/* Content section */
.hero-content {
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-image-container {
        width: 55%;
        margin-bottom: 0;
        margin-right: 2rem;
    }
    
    .hero-content {
        width: 40%;
        text-align: left;
        padding: 0;
    }
    
    .hero-image {
        max-height: none; /* Remove any height restrictions */
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .hero-image-container {
        width: 60%;
    }
    
    .hero-content {
        width: 35%;
    }
}
/* 
 * Portfolio Preview Section Fix - For index.php 
 * Ensures images aren't cropped and eliminates empty space
 */

/* Portfolio Preview Section Container */
#portfolio-preview {
    padding: 4rem 0;
    background-color: var(--white);
}

.portfolio-preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Title styling */
.portfolio-preview-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.portfolio-preview-title .accent-text {
    display: block;
    margin-bottom: 0.5rem;
}

.portfolio-preview-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.portfolio-preview-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-light), var(--copper));
    bottom: -10px;
    left: 25%;
}

.portfolio-preview-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid - Responsive layout that fills width */
.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 2.5rem;
}

/* Ensure images are contained and not cropped */
.portfolio-preview-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--blush-light);
    aspect-ratio: 1/1; /* Square aspect ratio */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.portfolio-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the entire area */
    transition: transform 0.5s ease;
}

.portfolio-preview-item:hover img {
    transform: scale(1.05);
}

.portfolio-preview-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-preview-item:hover .portfolio-preview-caption {
    opacity: 1;
}

/* View All button */
.portfolio-preview-button {
    text-align: center;
}

.portfolio-preview-button .btn {
    min-width: 200px;
}

/* Media Queries for Responsive Layout */
@media (min-width: 576px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* For larger screens, limit max width to prevent excessive stretching */
@media (min-width: 1200px) {
    .portfolio-preview-container {
        max-width: 1140px;
    }
}
/* 
 * Portfolio Lightbox Navigation Fix
 * Add this to your style.css file
 */

/* Lightbox styling with navigation */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border: 4px solid white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background-color: rgba(217, 158, 118, 0.8);
}

/* Navigation buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-nav:hover {
    background-color: rgba(217, 158, 118, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* For mobile devices - ensure buttons are visible and tappable */
@media (max-width: 767px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Lightbox animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* 
 * About Me Image Styling Fix
 * Add this to your style.css file
 */

/* About section container */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* About image container */
.about-img-container {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 350px;
}

/* Decorative border and styling for the image */
.about-img-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.about-img-frame:hover {
    transform: rotate(0deg);
}

/* Image styling */
.about-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.about-img-frame:hover img {
    transform: scale(1.05);
}

/* Decorative elements */
.about-img-frame:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--copper-light), var(--gold-light));
    z-index: -1;
    border-radius: 15px;
}

.about-img-frame:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    pointer-events: none;
    box-sizing: border-box;
}

/* About content */
.about-content {
    text-align: center;
    width: 100%;
}

.about-content h2 {
    color: var(--copper);
    margin-bottom: 1.5rem;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta {
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .about-img-container {
        width: 40%;
        margin-right: 5%;
        margin-bottom: 0;
    }
    
    .about-content {
        width: 55%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .about-img-container {
        width: 35%;
    }
    
    .about-content {
        width: 60%;
    }
}
/* 
 * Testimonial Styling - Without Navigation for Single Items
 * Add this to your style.css file
 */

/* Testimonial section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--blush-light);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Single testimonial styling */
.testimonial {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial:before {
    content: """;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--copper-light);
    opacity: 0.2;
    line-height: 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    padding: 10px 0 0 10px;
}

/* Testimonial author styling */
.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--copper-light);
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: var(--copper);
}

/* Multiple testimonials styling (when there are more than one) */
.testimonial-slider {
    position: relative;
}

.testimonial-slider .testimonial {
    display: none;
}

.testimonial-slider .testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Hide navigation buttons when only one testimonial */
.testimonial-slider.single-testimonial .testimonial-nav {
    display: none;
}

/* Navigation buttons for multiple testimonials */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.testimonial-nav:hover {
    background-color: var(--copper);
    color: var(--white);
}

.testimonial-prev {
    left: -20px;
}

.testimonial-next {
    right: -20px;
}

/* Testimonial indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background-color: var(--copper);
    transform: scale(1.2);
}

/* Hide indicators when only one testimonial */
.testimonial-slider.single-testimonial .testimonial-indicators {
    display: none;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 767px) {
    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-prev {
        left: -10px;
    }
    
    .testimonial-next {
        right: -10px;
    }
}

/* Script to initialize the testimonial slider */
/* Add this directly before the closing </body> tag */
/*
<script>
document.addEventListener('DOMContentLoaded', function() {
    // Initialize testimonial slider
    const testimonialSliders = document.querySelectorAll('.testimonial-slider');
    
    testimonialSliders.forEach(slider => {
        const testimonials = slider.querySelectorAll('.testimonial');
        
        // Add 'single-testimonial' class if there's only one testimonial
        if (testimonials.length <= 1) {
            slider.classList.add('single-testimonial');
        }
    });
});
</script>
*/
/* 
 * Contact Info Section - Horizontal Layout
 * Add this to your style.css file
 */

/* Contact section */
.contact-preview-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-preview-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section title */
.contact-preview-title {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-preview-title .accent-text {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-preview-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.contact-preview-title h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--copper-light), var(--copper));
    bottom: -10px;
    left: 25%;
}

.contact-preview-title p {
    max-width: 600px;
    margin: 0 auto;
}

/* Horizontal contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 3rem;
}

/* Contact card styling */
.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--copper), var(--gold-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.contact-text {
    color: var(--dark-gray);
    margin-bottom: 0;
}

.contact-text a {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--copper);
}

/* CTA button */
.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments - horizontal on tablets and up */
@media (min-width: 768px) {
    .contact-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
}

/* Three cards in a row on larger screens */
@media (min-width: 992px) {
    .contact-cards {
        flex-wrap: nowrap;
        gap: 30px;
    }
    
    .contact-card {
        min-width: 0;
    }
}
/* 
 * CSS-based Service Icons
 * Add this to your style.css file
 */

/* Service Card Styling */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--copper), var(--gold));
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transform: rotate(45deg) translate(25%, -120%);
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* CSS-based Icons */
.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper-light), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(217, 158, 118, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon-circle:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    z-index: 0;
}

.service-icon-circle i {
    position: relative;
    z-index: 1;
}

/* Specific icon styling */
.icon-bridal i {
    /* Crown/Tiara icon */
    color: var(--copper);
}

.icon-engagement i {
    /* Ring icon */
    color: var(--copper);
}

.icon-reception i {
    /* Champagne/Party icon */
    color: var(--copper);
}

.icon-party i {
    /* Makeup brush icon */
    color: var(--copper);
}

.icon-haldi i {
    /* Traditional/Flower icon */
    color: var(--copper);
}

.service-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 1.4rem;
}

.service-desc {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/*.service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--copper);
}
*/

.service-price {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.price-plus {
    font-size: 1rem;
    font-weight: 400;
    vertical-align: super;
}

.service-card .btn {
    align-self: center;
}

/* Services Preview Styling for Index Page */
.services-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.service-preview-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-preview-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--copper), var(--gold));
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transform: rotate(45deg) translate(25%, -120%);
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-preview-icon {
    margin-bottom: 20px;
}

.service-preview-title {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 1.4rem;
}

.service-preview-desc {
    margin-bottom: 20px;
    color: var(--dark-gray);
    flex-grow: 1;
}

.service-preview-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.service-preview-card .btn {
    min-width: 140px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .services-grid, .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid, .services-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Service Areas Section Styling */
.service-areas-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-areas-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 2rem;
}

.service-area-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-area-card h3 {
    color: var(--copper);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-area-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--gold-light));
}

.service-areas-cta {
    text-align: center;
    margin-top: 2rem;
}

.service-areas-cta p {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}