/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sub-title {
    color: #C5A065;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.btn-gold {
    display: inline-block;
    background-color: #C5A065;
    color: #fff;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: #a8864d;
}

/* Header / Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: url('hero_bg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

.hero-home {
    height: 75vh;
    min-height: 500px;
    background-position: center center !important;
    position: relative;
    overflow: hidden;
    background-image: none !important;
}

.hero-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('WhatsApp Image 2025-02-27 at 2.20.16 PM (1).jpg') no-repeat center 40%/cover;
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* 30% visibility of the background image */
    z-index: 1;
}

.hero-home .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.hero-call-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #C5A065;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-call-btn:hover {
    background-color: #a8864d;
    width: 50px;
}

/* Top Bar */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    /* Slightly transparent based on modern trends, or solid black? Image looks dark */
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: #C5A065;
    /* Gold icons */
    margin-right: 5px;
}

.social-icons a {
    color: #ccc;
    margin-left: 15px;
}

.social-icons a:hover {
    color: #C5A065;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 45px;
    /* Height of top bar approx */
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin-right: auto;
    margin-left: auto;
}

.nav-links a {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #C5A065;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active,
.nav-links a:hover {
    color: #C5A065;
}

.btn-appointment {
    border: 1px solid #C5A065;
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background-color: #C5A065;
    color: #fff;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    margin: 15vh auto auto auto;
    /* Move text up to avoid covering faces */
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #C5A065;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-text p {
    color: #777;
    margin-bottom: 20px;
    font-size: 1rem;
}

.signature {
    margin-top: 30px;
}

.signature-box {
    background: #fff;
    padding: 15px 25px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.sig-img {
    height: 60px;
    /* Adjust based on generated image */
    margin-bottom: 10px;
    /* mix-blend-mode: multiply; Only works if bg is white and img is white bg. */
}

.founder-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    /* Create the frame effect if desired, or simple shadow */
    box-shadow: 20px 20px 0px 0px #f2f2f2;
    border: 10px solid #fff;
    /* If photo has border */
}

.about-image img {
    max-width: 100%;
    /* height: auto; */
    max-height: 500px;
    object-fit: cover;
}

/* Practice Areas */
.practice-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.practice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.practice-header h2 {
    font-size: 3rem;
    margin: 0;
}

.divider-left {
    width: 60px;
    height: 3px;
    background-color: #C5A065;
}

.practice-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.practice-intro p {
    max-width: 600px;
    color: #777;
}

.practice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #C5A065;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(197, 160, 101, 0.05) 0%, transparent 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.card:hover::before {
    height: 100%;
}

.card-num {
    display: block;
    font-size: 2rem;
    color: #C5A065;
    /* Gold number */
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    opacity: 0.5;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C5A065;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.link-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.link-more:hover {
    color: #fff;
}

.link-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us */
.choose-us-section {
    padding: 80px 0;
}

.choose-content {
    display: flex;
    gap: 50px;
}

.choose-text {
    flex: 1.5;
}

.choose-text h2 {
    font-size: 3rem;
}

.choose-desc {
    color: #777;
    margin: 30px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.icon-box {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C5A065;
    border-radius: 50%;
    color: #C5A065;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    color: #555;
    padding-top: 10px;
    /* Align with icon center somewhat */
}

.feature-text strong {
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.btn-mt {
    margin-top: 20px;
}

.working-hours {
    flex: 1;
    background-color: #C49B5E;
    /* Gold/Brown color from image */
    color: #fff;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(196, 155, 94, 0.3);
    transition: all 0.4s ease;
    border-radius: 4px;
}

.working-hours:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(196, 155, 94, 0.4);
}

.working-hours h3 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.working-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 60px 0;
    /* Reduced height */
    background: url('WhatsApp Image 2025-02-27 at 2.20.18 PM (1).jpeg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* 20% visibility of background */
    z-index: 1;
}

.relative {
    position: relative;
    z-index: 2;
}

.call-us {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 30px;
}

.divider-center {
    width: 60px;
    height: 3px;
    background-color: #C5A065;
    margin: 0 auto 30px auto;
}

.cta-section p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.phone-cta {
    font-size: 2rem;
    color: #C5A065;
    font-weight: 700;
}

.phone-cta i {
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #111;
    color: #eee;
    padding: 80px 0 0;
    font-family: 'Lato', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #C5A065;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #C5A065;
    transform: translateX(8px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: #C5A065;
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact-item div p {
    margin: 0;
    line-height: 1.6;
    color: #bbb;
    font-size: 0.95rem;
}

.footer-contact-item a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #C5A065;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background-color: #C5A065;
    color: #fff;
    border-color: #C5A065;
    transform: translateY(-8px) scale(1.1);
}

.footer-bottom {
    background-color: #0c0c0c;
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Better Animations & Interactions */
.btn-gold,
.btn-appointment,
.hero-call-btn,
.control-btn,
.btn-full {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn-gold:hover,
.btn-appointment:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(197, 160, 101, 0.3);
}

.navbar .btn-appointment:hover {
    background-color: #C5A065;
    border-color: #C5A065;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Page Specific Styles */

.section-center {
    text-align: center;
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-title {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 30px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: none;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #C5A065;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background-color: #fff;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.results-title h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.title-divider {
    width: 40px;
    height: 3px;
    background-color: #C5A065;
    margin-top: 15px;
}

.results-text p {
    color: #777;
    font-size: 0.95rem;
}

/* Client Speaks Section */
.client-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-container {
    max-width: 1000px;
    margin: 50px auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.testimonial-card {
    text-align: center;
    position: relative;
}

.testimonial-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #999;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    background: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    margin-top: -150px;
    /* Overlap hero */
}

.contact-info-panel {
    padding: 60px;
    border-right: 1px solid #eee;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 40px;
    height: 40px;
    background: #C5A065;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #777;
    font-size: 0.95rem;
}

.contact-form-panel {
    padding: 60px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-full {
    width: 100%;
}

.map-container {
    height: 500px;
    width: 100%;
    border: none;
    margin-top: 50px;
}

/* Advisor Section */
.advisor-section {
    padding: 80px 0;
}

.advisor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/* Responsive Fixes */
@media (max-width: 992px) {

    .results-content,
    .advisor-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Smart Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for list items and cards */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.active .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

/* Professional Button Hover */
.btn-gold {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    width: 300px;
    height: 300px;
}

/* Image Hover Scaling */
.about-image img,
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image:hover img,
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Working Hours Row Hover */
.working-hours ul li {
    transition: all 0.3s ease;
    cursor: default;
}

.working-hours ul li:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.1);
}

/* Floating Controls */
.floating-controls {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.control-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.call-float-btn {
    background-color: #C5A065;
    color: #fff;
    font-size: 1.2rem;
}

.scroll-top-btn {
    background-color: #fff;
    color: #C5A065;
    border: 1px solid #eee;
    font-size: 1rem;
}

.control-btn:hover {
    transform: translateY(-5px);
}

.call-float-btn:hover {
    background-color: #a8864d;
}

.scroll-top-btn:hover {
    background-color: #fcecd2;
}