/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Updated to match SVG design */
    --percy-purple: #50005e;
    --secondary-teal: #005f73; /*#4bc0d9;*/
    --dark-teal: #015f73;
    --percy-navy: #434444;
    --navy-blue: #1b1852;
    --yellow-highlight: #ffa602; /*#FCD34D;*/
    --purple: #4f1e5d;
    --blue: #3B82F6;
    --light-gray: #F8FAFC;
    --gray: #64748B;
    --white: #FFFFFF;
	--percy-primary-blue: #005f73;
	--percy-lighter-blue: #4bc0d9;
	--percy-yellow: #ffa602;
	--percy-hot-pink: #b00056;
	--percy-purple: #50005e;
	--percy-navy: #000056;
	--percy-secondary-blue: #337f8f;
	--percy-light-blue: #93d9e8;
	--percy-light-yellow: #f9dba3;
	--percy-light-purple: #996685;
	--percy-dark-grey: #434343; /*#8E8E93;*/
	--percy-light-grey: #EBEAED;
	--percy-logo: #4BC0D9;
	--percy-socials: #EA3223;
	
	--bg-opacity: 0.5;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--percy-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.watchbutton{
    background: var(--percy-socials);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.3s;
}

.watchbutton:hover {
    background: #D01A7B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
    /* border: 2px solid var(--percy-hot-pink); */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION COMPONENT ===== */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
}

.nav-content {
    align-items: center;
}

.nav-content-links {
    display: flex;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
	color: var(--percy-logo);
}

.logo img {
    height: 32px;
    width: auto;
	padding-right: 5px;
	padding-right: 5px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--percy-logo);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--percy-navy);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--percy-purple);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--percy-navy);
    border-radius: 2px;
}

/* ===== BUTTON COMPONENTS ===== */
.btn-primary {
    background: var(--percy-purple);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--percy-purple);
}

.btn-primary:hover {
    background: var(--percy-hot-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
    border: 2px solid var(--percy-hot-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--percy-navy);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--percy-navy);
}

.btn-secondary:hover {
    background: var(--percy-navy);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-pink {
    background: var(--percy-hot-pink);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid var(--percy-hot-pink);
}

.btn-pink:hover {
    background: var(--percy-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
    border: 2px solid var(--percy-purple);
}

.btn-outline {
    /*background: transparent;*/
    background: var(--percy-light-blue);
    color: var(--secondary-teal);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s;
    /*border: 2px solid var(--secondary-teal);*/
}

.btn-outline:hover {
    background: var(--secondary-teal);
    color: var(--white);
}

/* ===== HERO SECTION COMPONENT ===== */
.hero {
    /*padding: 4rem 0 6rem;*/
    /*background: linear-gradient(to bottom, var(--white), var(--light-gray));*/
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--percy-navy);
    margin-bottom: 1.5rem;
}

.highlight-yellow {
    color: var(--percy-yellow);
    /*padding: 0 0.3rem;*/
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--percy-dark-grey);
    margin-bottom: 2rem;
    line-height: 1.7;
	font-weight: bold;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    /*border-radius: 12px;*/
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);*/
}

/* ===== SECTION HEADER COMPONENT ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--percy-secondary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-teal);
    margin-bottom: 0.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FEATURE CARD COMPONENT ===== */
.features-section {
    padding: 5rem 0 2rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.feature-icon img {
	width: 95px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--percy-dark-grey);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== IMAGE SECTION COMPONENT ===== */
.image-section {
  position: relative;
  padding: 0;
  min-height: 500px; /* controls hero height */
  
  background-image: url("images/property-manager.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-section-overlay {
	padding: 5rem 0 2rem 0;
	background-color: rgba(from var(--percy-purple) r g b / 0.15);
	width: 100%;
    height: 100%;
    position: absolute;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;

  max-width: 720px;
  padding: 32px 105px;

  background-color: rgba(from var(--percy-lighter-blue) r g b / 0.65); /* #4bc0d9 */
  color: #ffffff;

  box-sizing: border-box;
}

.overlay h2 {
  margin: 0 0 12px 0;
  font-size: 2.5em;
  font-weight: 700;
}

.overlay p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.5;
}

.overlay p:last-child {
  margin-bottom: 0;
  font-weight: bold;
}

/*.image-section {
    position: relative;
    padding: 5rem 0 2rem 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
	background-image: url('images/property-manager.jpg');
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.image-section-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
	background-color: #4BC0D980;
	padding: 0 30px;
}

.image-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.image-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}*/

/* ===== SPLIT SECTION COMPONENT ===== */
.split-section {
    padding: 5rem 0 2rem 0;
    /*background: var(--light-gray);*/
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-text {
	text-align: right;
}

.split-text .logo {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
	color: var(--percy-purple);
}

.split-text h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
	line-height: 1.25;
}

.split-text .brand-text {
    color: var(--percy-purple);
    font-weight: 800;
}

.split-text .script-text {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    color: var(--secondary-teal);
}

.split-image {
    /*width: 100%;
    height: auto;
    border-radius: 12px;*/
	max-width: 350px;
    height: 400px;
    overflow: hidden;
}

.split-image img {
	max-width: 100%;
}

/* ===== ICON CARD COMPONENT ===== */
.icon-cards-section {
    padding: 3rem 0;
    background: var(--white);
}

.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.icon-card {
    text-align: center;
    padding: 2rem;
}

.icon-card-icon {
    font-size: 3.5rem;
    /*margin-bottom: 1.5rem;*/
}

.icon-card-icon img {
	width:50px;
}

.icon-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--percy-navy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.icon-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== VIDEO CTA COMPONENT ===== */
.video-cta {
    padding: 5rem 0 2rem 0;
    /*background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);*/
	background-image: url("images/cta-background.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
}

/*.video-cta-overlay {
	padding: 5rem 0 2rem 0;
	background-color: rgba(from var(--percy-purple) r g b / 0.15);
	width: 100%;
    height: 100%;
    position: absolute;
}*/

.video-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.play-button {
    width: 50px;
    height: 50px;
    background: var(--percy-socials);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: transform 0.3s;
    border: none;
    margin-right: 30px;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button::after {
    content: '▶';
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 4px;
}

/* ===== STEPS COMPONENT ===== */
.steps-section {
    padding: 5rem 0 2rem 0;
    background: var(--white);
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--percy-hot-pink);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--percy-light-grey);
    color: var(--percy-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--percy-secondary-blue);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== TESTIMONIAL COMPONENT ===== */
.testimonials-section {
    padding: 5rem 0 2rem 0;
    /*background: var(--light-gray);*/
}

.testimonials-section .section-header{
	margin-bottom: 0;
}

.testimonials-section .section-header .section-title{
	color: var(--percy-hot-pink);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    text-align: center;
    padding: 3rem 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: var(--percy-navy);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--percy-navy);
    margin-bottom: 0.25rem;
}

.testimonial-title {
    color: var(--gray);
    font-size: 0.9rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-arrow:hover {
    border-color: var(--percy-purple);
    color: var(--percy-purple);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--percy-purple);
    opacity: 1;
}

/* ===== FINAL CALL TO ACTION ===== */
.final-cta {
    text-align: center;
}

.final-cta .container {
    padding: 1rem 0 2rem 0;
	background-color: var(--percy-purple);
	color: var(--white);
}

.final-cta h2 {
	padding-bottom:1em;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1rem;
  font-family: system-ui, sans-serif;
}

.contact-section h2 {
  color: #5a0a6b;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-section .subtitle {
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  color: #444;
  text-align: center;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.form-row select {
  grid-column: span 1;
}

.contact-section textarea {
  min-height: 160px;
  resize: vertical;
  border-radius: 24px;
}

.contact-section input,
.contact-section select{
  border-radius: 999px;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #333;
  font-size: 0.95rem;
  outline: none;
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
  border-color: #b0005a;
}

select:has(option:checked[value=""]) {
  color: #9ca3af; /* placeholder gray */
}

.form-footer {
  display: flex;
  justify-content: flex-end;
}

.contact-section button {
  background: #b0005a;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.contact-section button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.95rem;
  /*display:none;*/
}

.form-status.success {
  color: #0a7a3b;
  /*display:block;*/
}

.form-status.error {
  color: #b00020;
  /*display:block;*/
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ===== FOOTER COMPONENT ===== */
.footer {
    background: var(--secondary-teal);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

.newsletter {
    margin-bottom: 2rem;
}

.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
	margin-top: 2em;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
}

.newsletter-form input, .newsletter-form .form-status, .newsletter-form select, .newsletter-form textarea {
	display: none;
}

.newsletter-form #subscribe-email, .newsletter-form .hp-field {
	display:block;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--percy-purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #D01A7B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content,
    .split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .icon-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-sidebar {
        order: -1;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--percy-navy);
    margin-bottom: 1rem;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
}

.contact-form-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 600;
    color: var(--percy-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--percy-navy);
    transition: border-color 0.3s;
    background: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9CA3AF;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--secondary-teal);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gray);
    font-size: 0.75rem;
}

.form-field select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    margin-top: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    /*background: var(--light-gray);*/
    padding: 2rem;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--percy-navy);
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-value {
    font-size: 1rem;
    color: var(--percy-navy);
    font-weight: 500;
}

.contact-value a {
    color: var(--percy-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--secondary-teal);
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--secondary-teal) 0%, #0A8A7A 100%);
    padding: 2rem;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
}

.contact-cta-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.contact-cta-card .btn-primary {
    background: var(--white);
    color: var(--secondary-teal);
    border-color: var(--white);
}

.contact-cta-card .btn-primary:hover {
    /*background: var(--light-gray);*/
    color: var(--secondary-teal);
    border-color: var(--light-gray);
}
