 /* Base Styles */
:root {
    --beige: #F5F5DC;
    --light-beige: #FFF8E7;
    --gold: #D4AF37;
    --peach: #FFD3B6;
    --burnt-orange: #E07A5F;
    --slate-grey: #708090;
    --dark-grey: #333;
    --white: #FFFFFF;
    --black: #000000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-beige);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-grey);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-grey);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--burnt-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    /* border: 2px dashed var(--burnt-orange); */
    /* border-radius: 50%; */
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--burnt-orange); */
    font-weight: bold;
    transition: var(--transition);
}

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background: var(--dark-grey);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--peach), var(--light-beige));
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--gold);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--slate-grey);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(224, 122, 95, 0.4);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: float 6s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    right: -50px;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.about-text {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-cards {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--slate-grey);
    line-height: 1.7;
}

.vision-card .card-icon {
    background: var(--peach);
    color: var(--burnt-orange);
}

.mission-card .card-icon {
    background: var(--burnt-orange);
    color: var(--white);
}

.values-section {
    margin-top: 80px;
}

.values-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--dark-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    transform: rotate(15deg) scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-item p {
    color: var(--slate-grey);
    font-size: 0.95rem;
}

.founder-section {
    display: flex;
    align-items: center;
    margin-top: 80px;
    background: var(--light-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.founder-image {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
}

.image-placeholder {
    width: 100%;
    padding-bottom: 100%;
    background: var(--gold);
    opacity: 0.8;
    border-radius: 15px 0 0 15px;
}

.founder-info {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 50px;
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.founder-info h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.founder-info p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--slate-grey);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--burnt-orange);
    transform: translateY(-5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-beige) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.1);
    background: var(--burnt-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--slate-grey);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--burnt-orange);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Enquiry Section */
.enquiry {
    padding: 100px 0;
    background: var(--white);
}

.enquiry-container {
    display: flex;
    background: var(--light-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enquiry-info {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 60px;
    background: var(--gold);
    color: var(--white);
}

.enquiry-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.enquiry-info p {
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-methods {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-item span {
    flex: 1;
    line-height: 1.6;
}

.enquiry-form {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 60px;
    background: var(--white);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-beige);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: var(--slate-grey);
    transition: var(--transition);
    pointer-events: none;
    /* background: var(--white); */
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--gold);
    background: var(--white);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--burnt-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(224, 122, 95, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--light-beige) 0%, var(--white) 100%);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item p {
    flex: 1;
    line-height: 1.8;
    color: var(--slate-grey);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-media a:hover {
    background: var(--burnt-orange);
    transform: translateY(-5px);
}

.contact-map {
    flex: 0 0 55%;
    max-width: 55%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(30%) sepia(10%) hue-rotate(320deg) saturate(80%) brightness(110%);
}

/* Footer */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about {
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-about .logo-container {
    margin-bottom: 20px;
}

.footer-about .logo-placeholder {
    border-color: var(--gold);
}

.footer-about .company-name {
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links,
.footer-services,
.footer-contact {
    flex: 0 0 calc(20% - 50px);
    max-width: calc(20% - 50px);
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
}

.footer-contact ul li i {
    margin-right: 15px;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact ul li span {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--gold);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-text {
        flex: 0 0 55%;
        max-width: 55%;
    }
    
    .about-cards {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text,
    .about-cards {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-cards {
        flex-direction: row;
        gap: 20px;
    }
    
    .founder-section {
        flex-direction: column;
    }
    
    .founder-image,
    .founder-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .founder-image {
        padding-bottom: 80%;
    }
    
    .founder-info {
        padding: 40px;
    }
    
    .enquiry-container {
        flex-direction: column;
    }
    
    .enquiry-info,
    .enquiry-form {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .enquiry-info {
        padding: 40px;
    }
    
    .enquiry-form {
        padding: 40px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-map {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-about,
    .footer-links,
    .footer-services,
    .footer-contact {
        flex: 0 0 calc(50% - 25px);
        max-width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-cards {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-about,
    .footer-links,
    .footer-services,
    .footer-contact {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-info {
        padding: 30px 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
}