@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif&display=swap');


:root {
    --primary-color: #c59401;
    --secondary-color: #5d4b32;
    --accent-color: #c8a97e;
    --light-color: #f8f5f0;
    --dark-color: #1e1a15;
    --text-color: #333;
}

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


body {
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
}

html, body {
    overflow-x: hidden;
}


header {
    background-color: black;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.container p{
    font-family: 'Times New Roman', Times, serif;
    font-size: larger;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color); /* Use your existing color variable */
    font-size: 1.5rem;
    font-weight: 700;
    gap: 10px; /* Space between logo and text */
}

.logo-img {
    height: 40px; /* Adjust based on your logo size */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05); /* Subtle hover effect */
}

.logo span {
    position: relative;
    font-family: "Libertinus Serif", serif;
    color: #A0522D;
    top: 1px; /* Fine-tune vertical alignment if needed */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    font-family: "Mozilla Headline", sans-serif;
    color: #A0522D;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-3px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #A0522D;
    padding-left: 30px;
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

/* Mobile styles - remove dropdown behavior */
@media (max-width: 768px) {
    .dropdown-menu {
      position: static;
      display: block !important; /* Force show all items */
      box-shadow: none;
      background: transparent;
      padding: 0;
      min-width: auto;
    }
    
    .dropdown-toggle .dropdown-icon {
      display: none; /* Hide the dropdown arrow */
    }
    
    .dropdown-menu li {
      margin: 10px 0;
    }
    
    .dropdown-menu a {
      padding: 8px 20px;
      color: var(--light-color); /* Match your mobile menu text color */
    }
  }
  

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.03);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        opacity: 1;
        padding: 0;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .dropdown-menu a {
        justify-content: center;
    }
}


/* Hero Section - Left Aligned */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%), 
                url('https://images.unsplash.com/photo-1519606247872-0440aae9b827?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat right center/cover;
    padding: 0;
    color: white;
}

.hero .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding: 40px;
    margin-left: 5%;
}

.hero h1 {
    font-family: "Libertinus Serif", serif;
  font-weight: 400;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: #A0522D;
    margin: 25px 0;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #A0522D;
    color: #A0522D;
}

.btn-outline:hover {
    background: #A0522D;
    color: #000;
}

/* .hero {
    height: 100vh;
    background: linear-gradient(rgba(58, 44, 26, 0.7), rgba(58, 44, 26, 0.7)), url('https://images.unsplash.com/photo-1519606247872-0440aae9b827?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
} */

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #A0522D;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 300;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

/* Social Links Styles */

.home__social {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;          /* Modern browsers can use just 'gap' */
    align-items: center;
    justify-content: flex-start; /* Aligns items to the left */
    padding-top: 1rem;           /* Removes any default padding */
    margin: 0;            /* Removes any default margins */
    list-style: none;     /* Removes bullets if using <ul> */
}
  
  .home__social-link {
    font-size: 1.2rem;
    width: max-content;
  }
  .home__social-link{
  color: var(--white-color);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f9f5f0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #8b7355;
    letter-spacing: 2px;
    margin-top: 15px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-highlight {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    fill: #A0522D;
    opacity: 0.7;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.lead {
    position: relative;
    padding-left: 4rem;
    padding-right: 20px;
}

.lead::before,
.lead::after {
    font-size: 1.5em;
    color: #A0522D; /* Adjust quote color */
}

.lead::before {
    content: '"';
    left: 0;
}

.lead::after {
    content: '"';
    right: 0;
}

.about-features {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}


.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.8rem;
    color: #A0522D;
    margin-bottom: 15px;
}

.feature-item p {
    text-align: center;
    margin: 0 auto; /* Optional: Helps with proper centering in some cases */
    max-width: 80%; /* Optional: Prevents text from stretching too wide */
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c2416;
    text-align: center;
}

.image-frame {
    border: 1px solid #A0522D;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    overflow: hidden;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-caption {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
    position: relative;
}

.caption-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #A0522D;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-ghost {
    display: inline-block;
    padding: 12px 0;
    color: #2c2416;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid #A0522D;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: #A0522D;
    padding-right: 10px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #eeeade;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #2c2416;
    margin-bottom: 15px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #A0522D;
    margin: 20px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8b7355;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    height: 100%;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.service-card:hover .icon-shape {
    transform: rotate(0deg);
}

.service-icon i {
    position: relative;
    font-size: 2.2rem;
    color: #A0522D;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c2416;
    text-align: center;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #A0522D;
    font-size: 0.9rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    color: #2c2416;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.service-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-cta:hover {
    color: #A0522D;
}

.service-cta:hover i {
    transform: translateX(5px);
}



/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #f8f5f0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: #2c2416;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8b7355;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1400px;
}

.portfolio-item {
    perspective: 1000px;
}

.item-wrapper {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.portfolio-item:hover .item-wrapper {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,36,22,0.85) 0%, rgba(44,36,22,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 2px;
    background: #A0522D;
    margin: 15px auto;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tech-tags span {
    background: rgba(212, 175, 55, 0.2);
    color: #A0522D;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #A0522D transparent transparent;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .corner-accent {
    opacity: 0.8;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-gold {
    background: #A0522D;
    color: #2c2416;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: #2c2416;
    color: #A0522D;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Abstract Background Elements */
.portfolio::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(212,175,55,0) 70%);
    z-index: 0;
}
/* Contact Section */


.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #A0522D;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.contact-details i {
    margin-right: 10px;
    color: #A0522D;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #A0522D;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.form-result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-result.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-result.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}





/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #A0522D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.floating-call-btn:hover {
    background-color: #A0522D;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-call-btn:active {
    transform: scale(0.95);
}



/* Navigation Dropdown - Desktop Only */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Desktop hover behavior */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #A0522D;
    padding-left: 30px;
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness - Remove dropdown behavior and icons */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    /* Remove dropdown behavior on mobile */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        justify-content: center;
        pointer-events: none; /* Disable clicking on the toggle */
    }

    .dropdown-toggle .dropdown-icon {
        display: none; /* Hide dropdown arrow */
    }

    .dropdown-menu {
        position: static;
        display: block !important;
        width: 100%;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        max-height: none;
        padding: 0;
        margin: 0;
        transition: none;
    }

    .dropdown-menu li {
        margin: 10px 0;
    }

    .dropdown-menu a {
        justify-content: center;
        padding: 12px 20px;
        color: #A0522D;
        font-size: 1.1rem;
    }

    .dropdown-menu a:hover {
        background: rgba(160, 82, 45, 0.1);
        padding-left: 25px;
    }

    /* Remove all icons from dropdown menu items on mobile */
    .dropdown-menu a i {
        display: none;
    }

    /* Remove gap since icons are gone */
    .dropdown-menu a {
        gap: 0;
    }

    /* Remove all hover behaviors that might interfere */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown:hover .dropdown-icon {
        transform: none;
    }
}



/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(200, 169, 126, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 126, 0);
    }
}

.floating-call-btn.pulse {
    animation: pulse 2s infinite;
}

/* a[href^="tel"] {
    color: black !important;
    text-decoration: none !important;
  }
   */

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-call-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #1e1a15;
    color: #f8f5f0;
    padding: 60px 0 0;
    font-family: 'Smooch Sans', sans-serif;
}

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

.footer-col {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c8a97e;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: rgba(248, 245, 240, 0.7);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #c8a97e;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #c59401;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links a {
    color: rgba(248, 245, 240, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #c8a97e;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #c59401;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(248, 245, 240, 0.7);
}

.footer-contact i {
    margin-right: 12px;
    color: #c59401;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(248, 245, 240, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #c8a97e;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(200, 169, 126, 0.1);
    color: #c8a97e;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c8a97e;
    color: #1e1a15;
    transform: translateY(-3px);
}

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

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(248, 245, 240, 0.1);
    color: #f8f5f0;
    outline: none;
}

.footer-newsletter button {
    background: #c8a97e;
    color: #1e1a15;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #c59401;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 169, 126, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: rgba(248, 245, 240, 0.5);
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(248, 245, 240, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: #c8a97e;
}

.site-footer {
    margin-top: auto; /* This pushes footer to bottom */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-legal {
        justify-content: flex-start;
    }
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.9rem;
    color: #aaa;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        display: block;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h2 {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-left: 3; /* Remove left margin on mobile */
        text-align: center; /* Center content on mobile */
        padding: 20px;
    }
    
    
    .btn {
        padding: 6px 16px; /* Even smaller on mobile */
        font-size: 0.85rem;
    }
    
    .btn-outline {
        padding: 5px 15px;
    }
    .social-links {
        gap: 15px;
        margin-top: 25px;
    }
    .social-links a {
        font-size: 1.3rem;
        width: 36px;
        height: 36px;
    }
/* About section */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 50px;
    }
/* Service Section */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
}
