/* Base Styles */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #F5D07A;
    --gold-dull: #B8860B;
    --gold-dark: #996515;
    --complementary: #3737D4;
    --complementary-light: #5A5AEC;
    --dark: #222222;
    --dark-light: #333333;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --gray-dark: #DDDDDD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.gold-text {
    color: var(--gold-primary);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-primary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.gold-bg {
    background: var(--gold-primary);
    color: var(--light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--gold-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark-light);
    height: 30px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-light);
    line-height: 1.6;
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid rgba(212, 175, 55, 0.2);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.gold-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 1;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.gold-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold-primary) 2px, transparent 3px);
    background-size: 20px 20px;
    top: -30px;
    left: -30px;
    z-index: 1;
    opacity: 0.3;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--dark-light);
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item h4 {
    margin-bottom: 10px;
    font-weight: 500;
}

.skill-bar {
    width: 100%;
    height: 10px;
    background: var(--gray-dark);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 5px;
    position: relative;
    transition: width 1.5s ease;
}

.experience {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.exp-item {
    text-align: center;
}

.exp-item h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.exp-item p {
    font-size: 1rem;
    color: var(--dark-light);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--dark-light);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.pinterest {
    background: #E60023;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-image {
    position: relative;
    flex: 1;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.gold-square {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gold-primary);
    opacity: 0.1;
    bottom: -30px;
    right: -30px;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo p {
    margin-top: 10px;
    color: var(--gray-dark);
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-social .social-links {
    display: flex;
    gap: 15px;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--dark-light);
    color: var(--light);
    transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-light);
}

.footer-bottom p {
    color: var(--gray-dark);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Typing Animation */
.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }

  /* Only for about.html's about-image */
.detailed-about .about-image {
    margin-left: 50%;
}
    .contact-image {
        margin-bottom: 50px;
    }
    
    .experience {
        justify-content: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--light);
        transition: all 0.5s ease;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
    }
    
    .navbar ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .profile-img {
        width: 250px;
        height: 250px;
    }
    
    .gold-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .experience {
        flex-direction: column;
        gap: 20px;
    }
}













/* Services Page Specific Styles */
.services-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 0;
    background: var(--gray);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-light);
    font-size: 1.1rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--gold-primary);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--gold-primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background: rgba(212, 175, 55, 0.1);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--gold-primary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray-dark);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price-box {
    position: relative;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--dark-light);
    margin-left: 10px;
    position: relative;
    top: -5px;
}

.discount-badge {
    display: block;
    background: var(--complementary-light);
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
    width: fit-content;
    margin: 10px auto 0;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-dark);
    display: flex;
    align-items: center;
}

.pricing-features ul li:last-child {
    border-bottom: none;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.btn.outline-btn {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    margin: 0 auto 30px;
    display: block;
    width: calc(100% - 60px);
}

.btn.outline-btn:hover {
    background: var(--gold-primary);
    color: white;
}

.btn.dark-btn {
    background: var(--dark);
    color: white;
    margin: 30px auto 0;
    display: block;
    width: fit-content;
}

.btn.dark-btn:hover {
    background: var(--dark-light);
}

.custom-solutions {
    padding: 80px 0;
    text-align: center;
}

.custom-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--gray-dark);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--gray);
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--dark-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .old-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .pricing-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
}




/* Contact Page Specific Styles */
.contact-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--dark-light);
}

.social-section {
    margin-top: 50px;
}

.social-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-image {
    flex: 1;
    position: relative;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.gold-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--gold-primary);
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.3;
}

.contact-cta {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
    z-index: 3;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-cta p {
    color: var(--dark-light);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn.whatsapp-btn {
    background: #25D366;
    color: white;
}

.btn.telegram-btn {
    background: #0088CC;
    color: white;
}

.btn.whatsapp-btn:hover {
    background: #128C7E;
}

.btn.telegram-btn:hover {
    background: #006699;
}

/* Availability Section */
.availability-section {
    padding: 80px 0;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.day-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.day-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold-dark);
}

.day-card p {
    color: var(--dark-light);
    margin-bottom: 15px;
}

.status {
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status.available {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status.limited {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status.unavailable {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.availability-note {
    margin-top: 30px;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-cta {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}