/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
}

h3 {
    font-size: 1.5rem;
    color: #2c5530;
}

p {
    margin-bottom: 1rem;
    color: #000000;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Color Variables */
:root {
    --navy-primary: #1e3a5f;
    --navy-light: #2c5282;
    --green-primary: #2c5530;
    --green-light: #38a169;
    --gold-primary: #d4af37;
    --gold-light: #ecc94b;
    --gray-light: #f7fafc;
    --gray-medium: #e2e8f0;
    --white: #ffffff;
    --text-primary: #000000;
    --text-secondary: #000000;
}

/* Header and Navigation */
.header {
    background: #ffffff;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
}

.navbar {
    padding: 1rem 0;
    background: #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-link {
    display: block;
    text-decoration: none;
}

.nav-logo .header-logo {
    height: 65px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo .header-logo:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--gold-primary);
    color: var(--white);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: var(--light-gray);
    color: var(--navy-primary);
    border-left-color: var(--gold-primary);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1e3a5f;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 95, 0.5), rgba(30, 58, 95, 0.5)), 
                url('baggot-street.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* Medium screens - ensure proper coverage */
@media (min-width: 768px) and (max-width: 1399px) {
    .hero {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll; /* Better for laptops */
    }
}

/* Fix for devices that don't handle fixed backgrounds well */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

/* Mobile background positioning to show the door */
@media (max-width: 768px) {
    .hero {
        background-position: 75% center; /* Show right side of image where door is */
    }
}

/* Large monitor adjustments - zoom in when necessary */
@media (min-width: 1400px) {
    .hero {
        background-size: cover;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6) 0%, rgba(44, 82, 130, 0.5) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--navy-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy-primary);
}

/* Hero image styles removed - now using background image */

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-primary);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--gray-light);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-and-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    text-align: left;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.solicitors-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solicitors-image:hover {
    transform: scale(1.05);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.highlight-item i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    background: var(--white);
}

.reviews-content {
    text-align: center;
}

.reviews-summary {
    margin-bottom: 3rem;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    position: relative;
    height: auto;
}

.reviews-carousel .review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reviews-carousel .review-card.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.review-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.reviewer-badge {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: var(--gold-primary);
}

.review-text {
    color: #000000;
    margin: 1rem 0;
    line-height: 1.6;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Removed carousel controls to avoid text overlap */

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(30, 58, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--navy-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

/* Review Counter */
.review-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.current-review {
    font-weight: bold;
    color: var(--navy-primary);
}

/* Services Section */
.services {
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-primary);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--green-primary);
}

.service-card h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Careers Section */
.careers {
    background: var(--gray-light);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.careers-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.careers-text p {
    color: #000000;
    line-height: 1.6;
}

.careers-vacancies h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.careers-vacancies ul {
    list-style: none;
    padding: 0;
}

.careers-vacancies li {
    color: #000000;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.careers-vacancies li:before {
    content: "•";
    color: var(--gold-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.careers-cta p {
    color: #000000;
    margin: 0;
}

.careers-cta a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 500;
}

.careers-cta a:hover {
    color: var(--green-light);
    text-decoration: underline;
}

.careers-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    background: var(--gold-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--green-light);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--navy-primary);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-info h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-links {
    text-align: right;
}

.footer-links p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo .header-logo {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-link,
    .dropdown-toggle {
        color: #1e3a5f;
        text-decoration: none;
        font-weight: 500;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        display: flex;
        background: transparent;
        justify-content: center;
        align-items: center;
        min-width: 120px;
        text-align: center;
    }
    
    .nav-link:hover,
    .dropdown-toggle:hover {
        background: var(--gold-primary);
        color: var(--white);
    }
    
    /* Special handling for dropdown arrow to maintain center alignment */
    .dropdown-toggle {
        position: relative;
        padding-left: 1.5rem;
        padding-right: calc(1.5rem - 22px); /* Reduce right padding to shift text more to the right */
    }
    
    .dropdown-toggle i {
        margin-left: 0.5rem;
        font-size: 0.8rem;
        opacity: 0.7;
    }
    
    /* Mobile dropdown styles */
    .dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--white);
        border: none;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        margin-top: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--light-gray);
        border-radius: 5px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-link {
        color: var(--navy-primary);
        padding: 0.75rem 2rem;
        border-left: none;
        border-bottom: 1px solid var(--light-gray);
        background: var(--white);
        display: block;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-link:hover {
        background: var(--light-gray);
        color: var(--navy-primary);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        background-attachment: scroll;
        background-size: cover;
        min-height: 100vh;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-text-and-image {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile dot styling */
    .dot {
        width: 16px;
        height: 16px;
    }
    
    .careers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .careers-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card, .highlight-item {
        padding: 1.5rem;
    }
    
    .services-cta {
        padding: 2rem;
    }
}

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

.hero-content, .section-header {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling enhancements */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Service Pages Styles */
.service-hero {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--green-primary) 100%);
    color: var(--white);
    padding: 120px 0 40px;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    color: var(--white);
}

.service-content {
    padding: 40px 0 80px;
    background: var(--white);
}

.service-details {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.service-text h2 {
    color: var(--navy-primary);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.service-text h3 {
    color: var(--navy-primary);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
}

.service-text h4 {
    color: var(--navy-primary);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.service-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-list i {
    color: var(--green-primary);
    font-size: 1rem;
    width: 16px;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-category {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-3px);
}

.service-category h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-category h4 i {
    color: var(--green-primary);
    font-size: 1.2rem;
}

.service-category p {
    margin: 0;
    color: var(--text-secondary);
}

.specialisation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.specialisation-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.specialisation-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.specialisation-item h4 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.specialisation-item h4 i {
    color: var(--green-primary);
}

.specialisation-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.service-section:last-child {
    border-bottom: none;
}

.service-section h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.service-section h3 i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.debt-recovery-form-section {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.form-download {
    margin-top: 2rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.download-item i {
    font-size: 2rem;
    color: var(--green-primary);
}

.download-info h4 {
    margin: 0 0 0.5rem;
    color: var(--navy-primary);
}

.download-info p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.download-info .btn-secondary {
    background: var(--navy-primary);
    color: var(--white);
    border-color: var(--navy-primary);
}

.download-info .btn-secondary:hover {
    background: var(--navy-light);
    color: var(--white);
    border-color: var(--navy-light);
}

.service-cta {
    background: var(--navy-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.service-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Service Page Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 30px;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 30px 0 60px;
    }
    
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .specialisation-grid {
        grid-template-columns: 1fr;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-cta {
        padding: 2rem;
    }
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-form-container h3 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-form-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-form .btn-primary {
    justify-self: start;
    min-width: 150px;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    line-height: 1.5;
}

.contact-details a {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--gold-primary);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
